Posted on: 8/1/2014 5:29:20 PM | Views : 570

I have created a method and hosted a web service(asmx). The client application which is using my hosted web service is getting time out errors.
how do I set the timeout in the host application(not the client)?
The following is the web.config file. Could anyone please let me know how to set the timeout on the web service.
 
<?xml version="1.0"?>
<!--   For more information on how to configure your ASP.NET application, please visit   http://go.microsoft.com/fwlink/?LinkId=169433   -->
<configuration>     <system.web>       <compilation debug="true" targetFramework="4.0">               </compilation>     </system.web>   ...

Go to the complete details ...