Hi,
Currenty I have a window based NET application running and have a following function to http post some data.
string url = xxxx.aspx? parameter1=&par ameter2=&..etc
WebRequest request = WebRequest.Crea te(url);
request.Timeout =150000;
WebResponse response = request.GetResp onse();
StreamReader stream = new StreamReader(re sponse.GetRespo nseStream());
Contents = stream.ReadToEn d();
PROBLEM:
My problem is that is ALWAYS operation timeout...
CAN someone help me on THIS?
Currenty I have a window based NET application running and have a following function to http post some data.
string url = xxxx.aspx? parameter1=&par ameter2=&..etc
WebRequest request = WebRequest.Crea te(url);
request.Timeout =150000;
WebResponse response = request.GetResp onse();
StreamReader stream = new StreamReader(re sponse.GetRespo nseStream());
Contents = stream.ReadToEn d();
PROBLEM:
My problem is that is ALWAYS operation timeout...
CAN someone help me on THIS?