Client calls Async operations cause server overload
-
Wednesday, September 19, 2012 9:15 PM
We have a standard WCF service using basisHttpBinding. It is working fine when client proxy call it in sync mode. If client generates service reference by check "Generate asynchronous operations", client can consume WCF service in async way (client side).
I am trying to async send request to server side as fast as possible, I am seeing there server side easily return back "server too busy/ no response" error.
Is that a way to protect in server side for this case?
thanks,
All Replies
-
Friday, September 21, 2012 4:01 AM
Hi,
It seems it exceed the limit of MaxPendingChanels, check this:
http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/745b95d2-1480-4618-89f5-1339d6ee228d
- Edited by Franconia Friday, September 21, 2012 4:02 AM
-
Friday, September 21, 2012 2:37 PM
I am not using reliable session. It just regular basicHttpBinding with PerCall in service side.

