Simultaneous calls to WCFService hosted in Azure fails

503 Views Asked by At

I have a WCFService hosted in Microsoft Azure Cloud Services. The client machine can successfully make calls to the WCFServices one at a time. When I run tests with my client machine to simultaneously call the webservice, one one client can make a successful call and rest all of them fail.

I thought this scenario should be automatically handled. Do I have to make special configuration changes to make simultaneous call work?

I have exceptions like :

1] ExecuteReader requires an open and available Connection. The connection's current state is closed.

2] "Calling \'Read\' when the data reader is closed is not a valid operation."

I am using EntityFramework for my data layer.

1

There are 1 best solutions below

4
On

Can you elaborate on what the calls do and how long after do they fail? Calling WCF service multiple times at the same time is absolutely supported by Azure. However, if your calls run into contention between one another and are blocking one another, all but one may fail.

If one of your calls makes the other calls take longer than 1 min to complete, then Azure's load balancer will kill the other calls. Each call is allowed to complete for 1 min, as I painfully found out recently.