Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:50:08Z http://stackoverflow.com/feeds/question/1020129 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1020129/silverlight-2-set-timeout-on-ado-net-data-services-dataservicecontext 0 Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext MIantosca 2009-06-19T21:34:25Z 2009-06-19T21:52:10Z <p>I cannot figure out how to set a timeout on an ADO.NET data service that I am calling from a Silverlight client. I have seen blogs posts that mention a timeout property on the DataServiceContext base class.</p> <p><a href="http://blogs.msdn.com/astoriateam/archive/2009/01/13/timeout-workaround.aspx" rel="nofollow">http://blogs.msdn.com/astoriateam/archive/2009/01/13/timeout-workaround.aspx</a></p> <p>But when I try to set the Timeout property it on my DataServiceContext - but the property is not there.</p> <p>Anyone know of other ways to set the timeout - otherwise the Silverlight app will sit there waiting forever.</p> <p>I am sure there is a way to set a time out on my async methods that call out to the service but I do not wan to have to set that on each method call - I would to handle it at the service level</p> <p>thanks Michael</p> http://stackoverflow.com/questions/1020129/silverlight-2-set-timeout-on-ado-net-data-services-dataservicecontext/1020155#1020155 0 Answer by Jason Watts for Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext Jason Watts 2009-06-19T21:42:38Z 2009-06-19T21:52:10Z <pre><code>&lt;configuration&gt; &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="AllocationsDataServiceSoap" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647" **receiveTimeout=""**&gt; &lt;security mode="None" /&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="AllocationsDataServiceSoap" contract="AllocationsDataWebService.AllocationsDataServiceSoap" name="AllocationsDataServiceSoap" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p></p> <p>recievetimeout attribute in clientconfig.xml within the binding tag</p> <p>edit: this xml file is created in you project root when you add a service reference</p>