Reputation: 3376
I am deploying my Silverlight 4.0 application in various operating system. In Windows 7 it works perfectly, however in Windows XP SP3, error pops. It says Unhandled Error in Silverlight Application [Async_ExceptionOccurred] Arguments: Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem. See http://go.microsoft.com/fwlink/?linkid=106663&Version=4.0.50524.0&File=System.dll&Key=Async_ExceptionOccurred....
What seems could be the problem?
Thanks
Upvotes: 2
Views: 8170
Reputation: 51
Go to the client bin folder and rename your .xap
file to .zip
. You should now be able to open the file up like any normal zip file. Locate the .clientconfig
file and open it up in Notepad. Check that your endpoint addresses are set to a FQDN.
Upvotes: 5
Reputation: 2768
In your Silverlight project locate the ServiceReferences.ClientConfig
file and open it.
in Silverlight 4 you can address your endpoints with ..
like this:
<endpoint address="../Services/Common.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding" contract="Common.ICommon"
name="BasicHttpBinding_ICommon" />
Upvotes: 0