Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight Async Timeout Error

Calling through to my Silverlight Enabled WCF-Service in my silverlight application, occasionally users get timeouts. Whats the easiest way to boost the time allowed by the service client for a response?

The exact exception thrown is: System.TimeoutException: [HttpRequestTimedOutWithoutDetail]

Thanks

like image 958
NikolaiDante Avatar asked Dec 01 '08 16:12

NikolaiDante


1 Answers

  • Ammount of time connection can be open: BasicHttpBinding.OpenTimeout property
  • Time that a connection can remain inactive, during which no application messages are received, before it is dropped: BasicHttpBinding.ReceiveTimout property

This can be set in the node of the ServiceReference.ClientConfig file in the silverlight app.

like image 182
NikolaiDante Avatar answered Oct 06 '22 22:10

NikolaiDante