I am developing a Wp7 application, and I am running into a server exception when calling certain methods. I have access to the server where the services are hosted, but I can’t see how I can debug or get more information out of the exception so that I can handle it.
Thank you for the help.
You could subscribe to the
Application_Errorevent in Global.asax that is triggered on each unhandled exception and log the error details.If you have control over the remote server you could also install the Remote Debugging Tools and step through the code.