Turn on the Silverlight web service debug mode
A Silverlight webservice is returning an exception, so what happened to that webservice, if already deployed you have 2 options, configure your machine to run the code on your development computer, where you never see the problem as always works in my computer, or enable that server to return the exception message on the body for you to at least see.
<faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</faultcode><faultstring xml:lang="en-US">The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</faultstring></s:Fault>
If you haven’t install Fiddle that will give you the communication messages between your Silverlight application and the Service, check this is true on the service.
<behavior name="ServiceBehaviorConfiguration">
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
Now the service will send you the exception as a reply on the service for you to see when using Fiddle.
Hope this helps
Cheers
Al



Comments
Silverlight Travel » Turn on the Silverlight web service debug mode said on 4.15.2009 at 10:14 PM
Pingback from Silverlight Travel » Turn on the Silverlight web service debug mode
links for 2009-04-16 said on 4.16.2009 at 11:26 AM
links for 2009-04-16
Twitter Trackbacks for Turn on the Silverlight web service debug mode : Al Pascual [alpascual.com] on Topsy.com said on 9.01.2009 at 3:17 AM
Pingback from Twitter Trackbacks for Turn on the Silverlight web service debug mode : Al Pascual [alpascual.com] on Topsy.com