Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to do an async HttpRequest to a web service on a remote computer. This request can potentially need more than 60s which seems to be the default timeout of the HttpRequest. I can set the timeout property at the HttpRequest object, but unfortunately the Timeout property has no effect on asynchronous requests made with the BeginGetResponse or BeginGetRequestStream method (refer to http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.timeout.aspx).

Does anyone know how I can increase the timeout anyway so that I don't get an exception after 60 seconds?

Regards, Thorsten

share|improve this question

1 Answer

I think You Might Get Your answer From Here please Find answer from following link

Adjusting HttpWebRequest Connection Timeout in C#

or

find answer from below link This will definately helps you out

http://blogs.msdn.com/b/buckh/archive/2005/02/01/365127.aspx

share|improve this answer
Thanks for your answer, but I think this doesn't help me because the timeout settings in your referred links are for synchronous requests and NOT for asynchronous requests... What I need to do is an asynchronous request because I have to do some things while executing the request... – TMK Oct 2 '12 at 7:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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