رفع خطای ServiceTooBusy در WCF

زمانی که در سرویس‌های WCF با خطای 503 مواجه می‌شویم در جزییات خطا متنی با این عنوان می‌بینیم:

The HTTP service located at http://xxxxxxxxxx is unavailable. This could be because the service is too busy or because no endpoint was found listening at the specified address. Please ensure that the address is correct and try accessing the service again later.

برای حل این مشکل این قطعه کد باید در فایل Web.Config افزوده شود:

<serviceThrottling maxConcurrentCalls="2147483647" maxConcurrentInstances="2147483647" maxConcurrentSessions="2147483647" />

لینک رفرنس‌ها:

https://docs.microsoft.com/en-us/archive/blogs/wenlong/wcf-4-higher-default-throttling-settings-for-wcf-services

https://stackoverflow.com/questions/34836081/how-to-solve-system-servicemodel-servertoobusyexception-in-wcf