基本上ive跟着這個教程here使用wshttpbinding通過互聯網使用WCF服務?
並擁有一切和運行,並正常工作我的本地機器。我已經將它部署在IIS中,並允許必要的防火牆端口關閉,然後轉到駐留在不同域中的客戶端PC。
我啓動了這臺機器上的WCF測試客戶端,並在WSDL的URL中鍵入,我能夠查看服務調用沒有問題。唯一的事情是,當我真正嘗試使用的方法和歡送我的價值觀,我得到以下響應
「打電話的是未經過身份驗證由服務」
奇怪 - 即使它仍然本地工作就不會在另一臺機器上工作。有什麼特定的方式來配置基於什麼即時消息做客戶?
這裏是我的web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="WCF33.Service1">
<endpoint address ="" binding="wsHttpBinding" contract="WCF33.IService1" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/WCF33/Service1/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>
我跟着教程通過在郵件標題中的一個關鍵並驗證基於這一點,但沒有那這個問題。我認爲它與wshttp綁定有關,但我確實需要這種類型的加密。
誰能給我如何解決這個請:)
是的,我通過它期待SEC00001,否則返回將是「您不被允許訪問此服務」 – JazziJeff