我有一個WCF服務與自定義綁定,它可以在http或https上正常工作。但我完全不知道如何在http和https上使它可用?WCF與自定義綁定在http和https上
也有可能做到這一點?
這是我在web.config中的配置。
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<customBinding>
<binding name="customBinding0">
<binaryMessageEncoding />
<httpsTransport />
</binding>
</customBinding>
</bindings>
<services>
<service name="MyWCFService">
<endpoint address="" binding="customBinding" bindingConfiguration="customBinding0"
contract="MyWCFService" />
<endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
</service>
</services>
感謝
爲http添加一個端點,爲https添加另一個端點將解決您的問題。 – Deepesh 2011-06-01 05:20:14
我已添加爲答案,但仍然收到類似這樣的錯誤「無法找到與綁定CustomBinding的端點匹配scheme https的基地址,註冊的基址地址方案爲[http]。」 – aunghn 2011-06-01 05:46:45
您需要在端點中提供兩個不同的地址,因爲兩個端點不能共享相同的地址。 – Deepesh 2011-06-01 05:51:02