调试资源字符串不可用。通常,密钥和参数提供了足够的诊断信息

时间:2012-05-03 07:08:23

标签: visual-studio-2010 silverlight web-services

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

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。我没有得到什么问题。请帮帮我。谢谢。

1 个答案:

答案 0 :(得分:1)

注意,错误的以下部分:

  

调试资源字符串不可用。通常,密钥和参数提供了足够的信息来诊断问题。见http://go.microsoft.com/fwlink/?linkid=106663&Version=5.0.61118.00&File=System.dll&Key=Async_ExceptionOccurred

为了保持Silverlight运行时的纤薄,省略了许多字符串,以支持在线链接。如果您点击该链接,它会告诉您有关您遇到的错误的更多信息。

  

操作期间发生异常,导致结果无效。检查InnerException是否有异常细节。

要解决此问题,我们需要查看InnerException的外观。