首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

WCF找不到具有绑定 NetTcpBinding 的终结点的与草案 net.tcp 匹配的基址

2014-01-01 
WCF找不到具有绑定 NetTcpBinding 的终结点的与方案 net.tcp 匹配的基址请教个问题WCF出现 找不到具有绑定

WCF找不到具有绑定 NetTcpBinding 的终结点的与方案 net.tcp 匹配的基址
请教个问题  WCF出现 找不到具有绑定 NetTcpBinding 的终结点的与方案 net.tcp 匹配的基址。注册的基址方案是 [http]。如何解决 谢谢

<system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="cusTcpBinding" closeTimeout="00:01:00" openTimeout="00:01:00"
            receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
            transferMode="Buffered" transactionProtocol="OleTransactions"
            hostNameComparisonMode="StrongWildcard" listenBacklog="10"
            maxBufferPoolSize="2147483647 " maxBufferSize="2147483647 " maxConnections="10"
            maxReceivedMessageSize="2147483647 ">
          <readerQuotas maxDepth="64" maxStringContentLength="2147483647 " maxArrayLength="2147483647 "
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
            <message clientCredentialType="Windows" />
          </security>
          </binding>
      </netTcpBinding>
    </bindings>
    <services>
      <service behaviorConfiguration="WcfSearch.QHWShopServiceBehavior" name="WcfSearch.QHWShopService">
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:3785/QHWShopService" />
          </baseAddresses>
        </host>
        <endpoint address="" binding="netTcpBinding" contract="WcfSearch.IQHWShopService" bindingConfiguration="cusTcpBinding">
        </endpoint>
        <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="WcfSearch.QHWShopServiceBehavior">
          <serviceMetadata />
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
[解决办法]
把你客户端配置文件发来看看
[解决办法]

引用:
把你客户端配置文件发来看看


你这WCF服务是用什么来承载的呢
[解决办法]
你net.tcp://ziran-pc/QHWShopService.svc这个直接能访问吗
你的服务不想用iis部署是吗?为什么要用nettcp
[解决办法]
引用:
打算用nettcp看看能否解决大访问量时cpu过高问题

那你准备用iis来承载nettcp协议的WCF服务吗?

热点排行