Hi All,
I have a WCF Restfull service that receives too many synchronous requests; I want to make sure that the IIS do not discard any request.
I did a stress test (150 requests per second) and the IIS started to discard the requests after the maximum queue length reached (1000 request).
My question is: can I use a message queue implementation such as MSMQ with my WCF service? Please note that I still want my service clients to call HTTP API (the Restfull service).
Please guide me to a reliable solution that uses WCF Restfull service (synchronous requests).