vivier001 发表于 2010-2-22 14:58:27

winhttp5.1问题 501-Not Implemented

在win7系统下正常到了xpsp2下就出来问题了
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
                $oHTTP.Open("post","http://****",false)
                $oHTTP.setRequestHeader("Cache-Control", "no-cache")
                $oHTTP.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
                $oHTTP.send("name="&$user&"&password=")
$ohttp.responsetext返回
以下信息
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>501 - Not Implemented</title>
</head>
<body>
<h1>501 - Not Implemented</h1>
</body>
</html>
以前都是返回登录成功后的原代码的。为什么到了xp下就出来501-Not Implemented

rho123 发表于 2010-2-22 14:58:28

$oHTTP.Open("post","http://****",false)

改成 $oHTTP.Open("POST","http://****",false)

gooker 发表于 2010-2-23 10:13:00

xpsp2 是不是完整版?优化精简的系统可能会有问题.

vivier001 发表于 2010-2-23 16:42:03

回复 2# gooker

完整版的,打上了全部补丁,ie也换成了ie8。不知道为什么就是不行,试了2个xp的系统都不行

vivier001 发表于 2010-2-24 20:27:37

没人啊:face (29):

rence 发表于 2010-4-28 10:24:54

没注意过verb还是大小写敏感的啊

lleheaven 发表于 2013-3-3 17:47:20

我靠,我花了一下午研究xp上面怎么不work呢,原来get和post小写,XP不认识,谢谢!
页: [1]
查看完整版本: winhttp5.1问题 501-Not Implemented