Connection to server was abnormally aborted by xmlhttp

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 <-- it fails here <-- it fails here <-- it fails here <--
  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?

+5
source share
2 answers

ERROR_INTERNET_CONNECTION_ABORTED. , , -, . - , 127.0.0.1 , - IP-.

+7

; ( ) , .

, URL ?

+1

All Articles