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 $oHTTP.Open("post","http://****",false)
改成 $oHTTP.Open("POST","http://****",false) xpsp2 是不是完整版?优化精简的系统可能会有问题. 回复 2# gooker
完整版的,打上了全部补丁,ie也换成了ie8。不知道为什么就是不行,试了2个xp的系统都不行 没人啊:face (29): 没注意过verb还是大小写敏感的啊 我靠,我花了一下午研究xp上面怎么不work呢,原来get和post小写,XP不认识,谢谢!
页:
[1]