Link to home
Start Free TrialLog in
Avatar of sdugar
sdugar

asked on

Unable to fetch a url from a linux server ?

Dear friends,

i can not fetch a url from a linux server using

any of the following:

set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
or
set xmlhttp = CreateObject("Msxml2.ServerXMLHTTP.3.0")
or
set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")

----------------------------------------------------------------------------

I am getting the following error

-------------------------------------
msxml3.dll error 'c00ce56e'

System error: -1072896658.

------------------------------
and the error is in  "strText = xmlhttp.responseText".

Please send if their any other possibility of fetching url of remote server.

I am giving full code:
strURL="http://www.yourdomain.com/file1.php"
 
set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")
 
xmlhttp.Open "POST",strURL,"false"
xmlhttp.send ""
strText = xmlhttp.responseText
set xmlhttp = nothing

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of absx
absx
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Beverley Portlock
Beverley Portlock
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial