IIS6502錯誤的網關WCF不響應
- 我的網絡上有一個名爲Test_Server的網絡名稱的服務器。它連接到ISA代理。
- 我有一個名爲Live_Server的IP地址爲Live_IP的域名。它沒有連接到任何代理。或者假設是。
- 關當然,我打開所有的防火牆端口
- 我有一個WCF REST服務,我使用HTTPS連接到它,一切都在罰款: -
- 127.0.0.1: SomePort
- test_Server:SomePort
- 當我WCF休息連接到以下任何使用HTTPS請求: -
我得到502錯誤網關錯誤和異常狀態System.Net.WebExceptionStatus.ProtocolError
- Live_Server:SomePort
- Live_IP:SomePort
什麼是機會?
以下是WCF
瘋狂結束的
<system.serviceModel>
<services>
<service name="Contracts.WCF_REST">
<endpoint behaviorConfiguration="webHttp" binding="webHttpBinding" bindingConfiguration="SecureWebHttp" contract="Contracts.IWCF_REST" />
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="SecureWebHttp" useDefaultWebProxy="false">
<security mode="Transport">
<transport clientCredentialType="None" proxyCredentialType="None"/>
</security>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<endpointBehaviors>
<behavior name="webHttp">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>