2011-02-06 34 views
0

我們在安裝在客戶端的產品上獲得了此例外。 (我們正在使用wcf) 這是我們第一次得到這個錯誤。它適用於我們的其他客戶。 我試圖在受信任的根(它的verisighn證書) 上安裝證書,我們禁用代理。 (沒有防火牆雖然) 什麼可以問題 請幫助:) 摹無法爲客戶端上的權限爲'xxx.xxx.com'的SSL/TLS安全通道建立信任關係

編輯: ExceptionMessage: - 無法建立信任關係的SSL權威/ TLS安全通道「」。 ExceptionStackTrace: - 服務器堆棧跟蹤: 在System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(引發WebException引發WebException,HttpWebRequest的請求,HttpAbortReason abortReason) 在System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(時間跨度超時) System.ServiceModel.Channels.RequestChannel.Request(Message message,TimeSpan timeout) at System.ServiceModel.Dispatcher.RequestChannelBinder.Request(Message message,TimeSpan timeout) at System.ServiceModel.Channels.ServiceChannel.Call(String action,布爾單向,ProxyOperationRuntime操作,Object [] ins,Object []輸出,TimeSpan超時) at System.ServiceModel.Channels.ServiceChannel.Call(String action,布爾單向,ProxyOperationRuntime操作,對象[]項,在System.ServiceModel.Channels.ServiceChannelProxy.Invoke(即時聊天消息)

對象[]奏) 在System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage包括MethodCall,ProxyOperationRuntime操作)

到底F5停止我們的溝通,一旦有人打開鏈接發現

+0

看看[WCF無法爲SSL/TLS安全通道建立信任關係](http://www.codemeit.com/wcf/wcf-could-not-establish-trust-relationship-for -the-ssltls-secure-channel-with-authority.html) – 2011-02-06 17:09:15

+0

堆棧跟蹤和拋出此異常的代碼語句將有助於獲得更準確的答案。 – 2011-02-06 17:11:17

回答

0

我只是想知道沒有任何問題,如果你有這個決心?

我們的應用程序出現了類似的生產問題,該應用程序已運行多年,並在我們對軟件進行了小幅改進後停止了與您同日的工作。我們使用公共SSL獲取調用多個外部第三方Web服務樣式應用程序的相同錯誤消息。重新循環應用程序池暫時修復其應用程序。我們在域帳戶下運行IIS。我們現在正在與微軟就此問題進行合作。

我們已啓用System.NET跟蹤http://blogs.msdn.com/b/asiatech/archive/2009/04/08/using-system-net-trace-to-troubleshooting-ssl-problem-in-net-2-0-application.aspx。這通常有幫助,但在我們的情況下不是這樣

我們還實施了此http://msdn.microsoft.com/en-us/library/system.net.icertificatepolicy.aspx的稍微修改版本以捕獲驗證錯誤。應該很快得到這個上傳。

相關問題