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 开发者_如何学PythonIP 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.
So, my question here is where should i start to troubleshoot the source of problem?
What would be cause of the problem while it run fines on device but not on the emulator?
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.
精彩评论