PollingDuplexHttpBinding faulted after 5 or 6 calls
I have Implemented polling duplex in silverlight 4 application for getting large amounts of data using client call backs from server, so my service contains some functions with client call backs and some with out call backs. When only 3 or 4 functions called parallel it was working fine, when more than 5 or 6 parallel calls are there i am getting ServerTooBusyException (Service is too busy).
After setting serviceThrottling maxConcurrentCalls="10000" maxConcurrentInstances="10000" maxConcurrentSessions="10000" values also, I am 开发者_运维知识库unable to fix the problem.
When I apply basichttpbinding to service everything is working fine, but when pollingDuplexHttpBinding is aplied its giving error
Take a look at ReliableSessionElement.MaxPendingChannels. Here is example. BTW May be it will be good to think about how to process that exception when the time comes.
精彩评论