up vote 4 down vote favorite
share [g+] share [fb]

I need a way of calling a web page from inside my .net appliction.

But i just want to send a request to the page and not worry about the response.

As there are times when the response can take a while so i dont want it to hang the appliction.

I have been trying in side the page_load event

WebClient webC = new WebClient();
Uri newUri = new Uri("http://localhost:49268/dosomething.aspx");
webC.UploadStringAsync(newUri, string.Empty);

Even though its set to Async, it still seams to hang as the page wont finish remdering until the threads have finsished

link|improve this question

feedback

6 Answers

Look at System.Net.WebClient, specifically use the DownloadDataAsync() method to send the request without blocking the rest of the app.

link|improve this answer
feedback

This should work for you:

System.Net.WebClient client = new System.Net.WebClient();
client.DownloadDataAsync(new Uri("http://some.url.com/some/resource.html"));

The WebClient class has events for notifying the caller when the request is completed, but since you don't care there shouldn't be anything else to it.

link|improve this answer
I agree it should work but the web page wont render back to the broswer until the threads have finished, so it still hangs – TheAlbear Nov 19 '08 at 18:08
feedback

For not having you application to hang you will need to call the method from a Thread.

For the HTTP request without an answer, something like that should do the job:

Thread myThread = new Thread(new ThreadStart(myMethodThatDoHttp));
    myThread.Start();
public void myMethodThatDoHttp()
{
	HttpWebRequest request  = (HttpWebRequest)WebRequest.Create("http://www..com");
	HttpWebResponse response = (HttpWebResponse)request.GetResponse();
}
link|improve this answer
feedback
up vote 3 down vote accepted

Doak, Was almost there, but each time I put any of the request in a sepreate thread the page still wouldn't render until all the thread had finished running.

The best way I found was adjusting Doak's method, and just sticking a timeout in there and swallowing the error.

I know its a hack but it does work :P

WebRequest wr = WebRequest.Create("http://localhost:49268/dostuff.aspx");
wr.Timeout = 1000;

try
{
    HttpWebResponse response = (HttpWebResponse)wr.GetResponse();
}
catch (Exception ex)
{
    //We know its going to fail but that dosent matter!!
}
link|improve this answer
I have found its best to give it 3-5 seconds to time-out. – TheAlbear Nov 22 '10 at 16:13
feedback

To have this process without interrupting the page flow of your current page I would recommend creating a WCF service that will execute the code for you. Have the service set to use 1 way calls and on the page initiate an Ajax call to the service.

link|improve this answer
I like my service and website in the same project and tired to each other, the problem with any windows service is that 1. it can crash, do you write a second service to catch the crash? catch 22 and there is no tired dependency if you move servers / hosts, server gets reset via your ISP, the service can easily be forgotten. – TheAlbear Nov 22 '10 at 16:10
WCF is often hosted inside IIS, so while sometimes its possible that an app domain could crash ASP.NET and perhaps lose a request or 2 that's not a very often occurrence. I'm not sure what the 2nd part is asking – Chris Marisic Nov 23 '10 at 13:19
feedback

Use System.Net.WebClient.DownloadDataAsync/DownloadFileAsync in conjunction with DownloadDataCompleted/DownloadFileCompleted.

link|improve this answer
This still makes the calling thread hang until the async thread has finished.. it shouldn't but it does :/ – TheAlbear Nov 15 '11 at 22:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.