您好,登錄后才能下訂單哦!
這篇文章主要介紹了WCF出錯怎么辦,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
1. 運行self-hosting之后報錯:
System.ServiceModel.AddressAccessDeniedException' occurred in System.Servic
System.ServiceModel.AddressAccessDeniedException: ... http://+:9999/calculatorService/...
以管理員權限運行cmd,解決HTTP名字空間保護的問題。打開了cmd之后,運行
"netsh http add urlacl http://+:9999/calculatorService/ user=everyone"
2.
System.ServiceModel.CommunicationObjectFaultedException
The communication object, System.ServiceModel.ServiceHost, cannot be used for communication
并且查看stack 中顯示 timeout,猜想估計是權限不夠,重啟vs,右擊選擇屬性->兼容性->以管理員身份運行。
成功
3.
'System.ServiceModel.Security.SecurityNegotiationException' occurred in mscorlib.dll
Additional information: SOAP security negotiation with 'http://xlt1159-cn1:9999/messageService' for target 'http://xlt1159-cn1:9999/messageService' failed. See inner exception for more details.
問題:WCF的安全問題,如果不需要考慮安全性,最簡單的方法將security.mode 設置為Node。
如在service中添加代碼:
WSHttpBinding wsb = new WSHttpBinding();
wsb.Name = "TestBinding";
wsb.Security.Mode = SecurityMode.None;
在 client中添加代碼:
WSHttpBinding wsb = new WSHttpBinding();
wsb.Name = "TestBinding";
wsb.Security.Mode = SecurityMode.None;
wsb.Security.Message.ClientCredentialType = MessageCredentialType.None;
(https://msdn.microsoft.com/en-us/library/ms731925.aspx)
4. WCF服務端如果是remote的,需要在服務端要打開端口號,在防火墻中新增規則。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“WCF出錯怎么辦”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。