So I am stepping through my code and now I run the project again to move onto another breakpoint. However my project doesn’t move on instead it crashes saying that I have exceeding the timeout limit for a webservice.
How can I increase the timeout limit for web services so I stop getting these exceptions?
You need to specify
openTimeout,sendTimeout,receiveTimeoutandcloseTimeoutattributes of<binding>element in your Web.config and ServiceReferences.ClientConfig files.For example:
If this answers your question, please “mark it as answer”.