Might seem like a silly question, but everything in WCF seems a lot more complicated than in asmx, how can I increase the timeout of an svc service?
Here is what I h
Got the same error recently but was able to fixed it by ensuring to close every wcf client call. eg.
WCFServiceClient client = new WCFServiceClient (); //More codes here // Always close the client. client.Close();
or
using(WCFServiceClient client = new WCFServiceClient ()) { //More codes here }