I have this asp test1.asp page on the same server (on another site) as this web service. The thing is, when I try to run this code
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 <
if oHTTP.Status = 200 Then
HTTPPost oHTTP.responseText
End if
End Function
%>
I get the following error
Error msxml3.dll '80072efe'
Server connection aborted abnormally
I looked for this problem, thinking that maybe these were some small encores that I could easily solve, but I am encountering some problems. This is not easy to get to work.
if we start the same page from another place, then it works.
Any ideas?
source
share