Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:50:08Zhttp://stackoverflow.com/feeds/question/1020129http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1020129/silverlight-2-set-timeout-on-ado-net-data-services-dataservicecontext0Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext MIantosca2009-06-19T21:34:25Z2009-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#10201550Answer by Jason Watts for Silverlight 2: Set Timeout on ADO.NET Data Services DataServiceContext Jason Watts2009-06-19T21:42:38Z2009-06-19T21:52:10Z<pre><code><configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="AllocationsDataServiceSoap" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647" **receiveTimeout=""**>
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address=""
binding="basicHttpBinding" bindingConfiguration="AllocationsDataServiceSoap"
contract="AllocationsDataWebService.AllocationsDataServiceSoap"
name="AllocationsDataServiceSoap" />
</client>
</system.serviceModel>
</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>