2

我正在使用 Silverlight 制作应用程序。在按钮单击的那个应用程序中,我正在调用一个 Web 服务方法(Web 服务部署在 IIS 上)。我收到错误

Message:AuthenticateUser_CheckUserAuthorizationCompleted : [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=5.0.61118.00&File=System.dll&Key=Async_ExceptionOccurred
   at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
   at Console1.AuthenticateUser.CheckUserAuthorizationCompletedEventArgs.get_Result()
   at Console1.LogIn.AuthenticateUser_CheckUserAuthorizationCompleted(Object sender, CheckUserAuthorizationCompletedEventArgs e)

AuthenticateUser_CheckUserAuthorizationCompleted我从中调用 Web 方法的事件在哪里。我还检查了 Fiddler 工具中的错误,它显示 ErrorCode: 10060.A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.1.130:80. 我不明白是什么问题。请帮助我。在此先感谢。

4

1 回答 1

1

Note, the following portion of the error:

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=5.0.61118.00&File=System.dll&Key=Async_ExceptionOccurred

In order to keep the Silverlight runtime slim, a lot of strings were omitted in favour of links to them online. If you follow the link, it will tell you more about the error that you encountered.

An exception occurred during the operation, making the result invalid. Check InnerException for exception details.

In order to resolve this issue, we need to see what the InnerException looks like.

于 2012-08-10T14:35:50.020 回答