【发布时间】:2019-11-07 06:26:32
【问题描述】:
我在与此 Web 服务相同的服务器(不同的网站)中有此 asp 页面 test1.asp。事情是当我尝试运行这段代码时
sUrl = "http://chat.xxxxx.com/UCWebServices/Chat.asmx/GetChatQueueByAddress?queueAddress=SALESCHAT"
result = HTTPPost(sUrl)
response.Write result
Function HTTPPost(sUrl)
set oHTTP = CreateObject("Msxml2.ServerXMLHTTP")
oHTTP.open "GET", sUrl,false
oHTTP.send <-- it fails here <-- it fails here <-- it fails here <--
if oHTTP.Status = 200 Then
HTTPPost oHTTP.responseText
End if
End Function
%>
我收到以下错误
msxml3.dll 错误“80072efe”
与服务器的连接异常终止
我用谷歌搜索了这个问题,认为这可能是我可以轻松解决的一些小问题,但我遇到了一些问题。让它发挥作用并不容易。
如果我们从其他任何地方运行相同的页面,那么它就可以工作。
有什么想法吗?
【问题讨论】:
标签: web-services asp-classic xmlhttprequest