Service too busy error in WCF

前端 未结 8 726
被撕碎了的回忆
被撕碎了的回忆 2021-01-03 20:07

I intermittently get the following exception in my .Net WCF Service. \"The HTTP service located at http://MyServer/TestWCF/MyService.svc is too busy.\"

Am I missing

8条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-03 20:45

    It is not just the maxConcurrentSessions, it is also how long the session lasts.

    If the client does not close the connection, it will remain open until it timesout. You could then hit the maxConcurrentSessions limit with very little activity on the server.

提交回复
热议问题