2012-03-24 77 views
9

我想包括兩個端點在我的WCF基於Web的服務 - wsHttp和netTcp。 如Web.config圖所示我加入他們,但是當我編譯收到以下錯誤,然後單擊Service.svc在網頁瀏覽器:在system.serviceModel/bindings/wsHttpBinding綁定沒有...錯誤

錯誤頁面:

Server Error in '/MyService' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: The binding at system.serviceModel/bindings/wsHttpBinding does not have a configured binding named 'wsHttpBinding'. This is an invalid value for bindingConfiguration. 

Source Error: 

Line 16: </baseAddresses> Line 17:   </host> Line 18: <endpoint address="http://localhost:8090/Services/MyService" Line 19:     binding="wsHttpBinding" Line 20:     bindingConfiguration="wsHttpBinding" 


Source File: C:\MyService\web.config Line: 18 

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1 

網站的.config:

<?xml version="1.0"?> 
<configuration> 
    <system.web> 
    <compilation debug="false" targetFramework="4.0" /> 
    </system.web> 
    <system.serviceModel> 
    <protocolMapping> 
     <add scheme="http" binding="wsHttpBinding"/> 
    </protocolMapping> 
    <services> 
     <service 
     name="Microsoft.ServiceModel.Samples.MyService"> 
     <host> 
      <baseAddresses> 
      <add baseAddress="net.tcp://localhost:9001/"/> 
      </baseAddresses> 
     </host> 
     <endpoint address="http://localhost:8090/Services/MyService" 
        binding="wsHttpBinding" 
        bindingConfiguration="wsHttpBinding" 
        name="MyService_WsHttp" 
        contract="Microsoft.ServiceModel.Samples.IService" /> 
     <endpoint address="net.tcp://localhost:9000/Services/MyService" 
        binding="netTcpBinding" 
        bindingConfiguration="tcpBinding" 
        name="MyService_Tcp" 
        contract="Microsoft.ServiceModel.Samples.IService" />  
     </service> 
    </services> 
    <behaviors> 
     <serviceBehaviors> 
     <behavior> 
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above 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"/> 
    </system.webServer> 

</configuration> 

回答

30

採取了這一點:

  bindingConfiguration="wsHttpBinding" 

從這裏:

address="http://localhost:8090/Services/MyService" 
        binding="wsHttpBinding" 
        bindingConfiguration="wsHttpBinding" 
+1

的...釷...謝謝! – Bob 2012-03-24 16:56:19

+0

請標記爲答案,如果它的工作 - 原因是,如果你使用'開箱'綁定(因爲你是......),那麼你沒有做任何配置更改 - 該屬性的意圖是表明。 – Chris 2012-03-24 16:59:35

+0

當我使用wsHttpBinding時,它說契約必須使用DualHttpBinding?! – Hari 2014-01-03 09:06:23