user935991
user935991

Reputation: 57

ServerTooBusy Exception on Emulator

While i was running the silverlight application on my device, it is actually going on fine. But, when i try to run it on the emulator, it shows me

ServerTooBusyException was unhandled

The HTTP service located at "the ip address with web service link here" is too busy

it also pointed to the file named :

reference.cs

Personally i am extremely new to this project as they left over. I had totally no idea where to start to look for the source of problem coming from. I had also gone through the web trying to browse for some information about this exception. But, i don't seem to quite understand them (kind of confusing for me).

I also took some advice from my colleagues which is to change the IP address of the computer. But it doesn't seem to work.

The web service is hosted in the same LAN but different PC. The code was developed in C#. The web service are WCF.

  1. So, my question here is where should i start to troubleshoot the source of problem?

  2. What would be cause of the problem while it run fines on device but not on the emulator?

Upvotes: 1

Views: 169

Answers (1)

invalidusername
invalidusername

Reputation: 913

You can start by installing Fiddler. This program will show you which data is actually being sent between your computer and the WCF endpoint. The errors returned are not always directly related to the real problem is my experience with WCF.

Upvotes: 0

Related Questions