nilanka_shani
Newcomer
- Joined
- Oct 27, 2006
- Messages
- 2
Hi,
I want to post an XMLHTTPRequest to a server for the screen scrapping
purpose. but it always throws an exception .
This is the code I have written.
The same code works fine when the request is posted to an http url.
Is there any solution for this? I tried to use WinHttp. But it also
asks for a client certificate.
hope someone will help me.
I want to post an XMLHTTPRequest to a server for the screen scrapping
purpose. but it always throws an exception .
Code:
{"The download of the specified resource has failed.\r\n" }
[System.Runtime.InteropServices.COMException]:
{System.Runtime.InteropServices.COMException}
System.Object: {System.Runtime.InteropServices.COMException}
_className: null
_COMPlusExceptionCode: -532459699
_exceptionMethod: <undefined value>
_exceptionMethodString: null
_helpURL: null
_HResult: -2146697208
C#:
MSXML.XMLHTTPRequestClass lobjRequest = new XMLHTTPRequestClass();
string lstrNull = null;
object lobjNull =lstrNull;
string lstrBody="";
lobjRequest.open("POST","https://xxxxxxxxxxx, false, lobjNull,
lobjNull);
lobjRequest.setRequestHeader("Content-Type",
"application/x-www-form-urlencoded");
lobjRequest.setRequestHeader("Referer","http://xxxxxxxx");
string lstrRequest="xxxxxxxxxxxxxxxxx";
lobjRequest.send(lstrRequest);
lstrBody = lobjRequest.responseText;
The same code works fine when the request is posted to an http url.
Is there any solution for this? I tried to use WinHttp. But it also
asks for a client certificate.
hope someone will help me.
Last edited by a moderator: