hello, I have a WCF service that has been giving me this error under load conditions (and I cant seem to recreate the error otherwise). we've been trying to find a way aroud it for about a week now with no such luck..
actually, the error I see has two parts to it,
System.ServiceModel.CommunicationException: An error: (The request was aborted: the request was cancelled.) occurred while transmitting data over the http channel.
and:
System.Net.WebException: The request was aborted: the request was cancelled.
I've seen many people suggest to disable working with keep alive by overloading a method in the reference.cs file and setting keepAlive= false, however out client side is using a service reference (in addition to web reference) and this option does not exist anymore.
Another option Ive seen was to add a custom Binding to the service instead of the BasicHTTPBinding we are using now, but that would bother backwards support of the webservice to those who have been using a webReference (since CustomBinding is not soap enabled).
Has anyone dealt with this error before? is there a way to disable keep alive in WCF without affecting the server side? is there anything other that keep alive that is known to cause this error?
thank you very much i advance..