WCF出错。找不到与绑定WSHttpBinding的端点的scheme http匹配的基址

时间:2015-06-30 23:33:22

标签: c# web-services wcf tfs wshttpbinding

我一般都很擅长构建Web服务和WCF,虽然到目前为止我已经做得很好但我遇到了以下问题我似乎无法过去。

找不到与绑定WSHttpBinding的端点的scheme http匹配的基址。注册的基地址方案是[]。

我将app.config设置为

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>

      <system.web>
        <compilation debug="true" targetFramework="4.0" />
      </system.web>
      <system.serviceModel>
        <bindings>
          <wsHttpBinding>
            <binding name="WcfSoapServiceBinding">
              <security mode="None" />
            </binding>
          </wsHttpBinding>
        </bindings>
        <behaviors>
          <serviceBehaviors>
            <behavior name="WcfSoapServiceBehavior">
              <serviceMetadata httpGetEnabled="true" />
              <serviceDebug includeExceptionDetailInFaults="true" />
            </behavior>
          </serviceBehaviors>
        </behaviors>
        <services>
          <service behaviorConfiguration="WcfSoapServiceBehavior" name="WcfSoapService.Service1">
            <endpoint binding="wsHttpBinding" bindingConfiguration="WcfSoapServiceBinding"
              contract="WcfSoapService.IService1" />
          </service>
        </services>
      </system.serviceModel>
      <system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
      </system.webServer>
    </configuration>

我将安全模式设置为&#34;无&#34;所以它使用HTTP而不是HTTPS,我还将httpGetEnabled设置为true。我已经尝试了一些我在网上找到的不同选项,但到目前为止还没有任何帮助。我使用Ewald Hofman的例子来说明如何使用WCF订阅TFS。

http://www.ewaldhofman.nl/post/2010/08/02/How-to-use-WCF-to-subscribe-to-the-TFS-2010-Event-Service-rolling-up-hours.aspx

我觉得我很亲密,但这是我能够过去的一件事。我的最终目标是从TFS获取Soap请求并解析其数据。作为WCF和Web服务器的新手,我不确定这个错误实际上告诉我的错误。所以我有两个问题。

1)这个错误意味着什么错?更具体地说,&#34;注册的基地址方案是[]&#34;意思。

2)我怎样才能修复错误?

1 个答案:

答案 0 :(得分:0)

在您的服务部分添加基地址或为您的终端添加地址元素。

 <services>
          <service behaviorConfiguration="WcfSoapServiceBehavior" name="WcfSoapService.Service1">

         <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8182/MyService"/>
          </baseAddresses>
        </host>

            <endpoint address=""
 binding="wsHttpBinding" bindingConfiguration="WcfSoapServiceBinding"
              contract="WcfSoapService.IService1" />
          </service>