您的位置:首页 > 理论基础 > 计算机网络

WCF:如何将net.tcp协议寄宿到IIS

2013-07-12 14:31 507 查看

WCF:如何将net.tcp协议寄宿到IIS

0评/257阅
sun flower 发布于 : 2012-12-11


1 部署IIS


1.1 安装WAS

IIS原本是不支持非HTTP协议的服务,为了让IIS支持net.tcp,必须先安装WAS(Windows Process Activation Service),即windows进程激活服务。

打开控制面板--程序和功能--打开或关闭windows功能,安装WAS,如图:

View Code

<?xml version="1.0"?>
<configuration>

<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>

<system.serviceModel>
<protocolMapping>
<add scheme="tcp" binding="netTcpBinding"/>
</protocolMapping>
<bindings>
<netTcpBinding>
<binding name="netTcpBindConfig"  closeTimeout="00:30:00" portSharingEnabled="true"
openTimeout="00:30:00" receiveTimeout="00:30:00" sendTimeout="00:30:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10">

<readerQuotas maxDepth="2147483647"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647" />
<reliableSession ordered="true"  inactivityTimeout="00:01:00" enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign"  />
<message clientCredentialType="Windows"  />
</security>
</binding>
</netTcpBinding>
</bindings>
<services>

<service behaviorConfiguration="MyBehavior" name="WCFService.Service1">
<endpoint address="" binding="netTcpBinding" contract="WCFService.IService1" bindingConfiguration="netTcpBindConfig"></endpoint>
<endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" ></endpoint>
</service>

</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyBehavior" >
<serviceMetadata/>
<serviceDebug includeExceptionDetailInFaults="true" />
<dataContractSerializer maxItemsInObjectGraph="6553600"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>

<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>

</configuration>



2.2 发布服务

将服务发布到IIS,在浏览器中访问服务,如果访问正常就说明服务部署成功,如图:




2.3 测试服务

新建一个控制台项目,测试服务。添加服务



测试服务正常。


3 遇到的问题

问题1:找不到具有绑定 NetTcpBinding 的终结点的与方案 net.tcp 匹配的基址。注册的基址方案是 [http]。

这可能是你的网站中没有启用net.tcp协议所到致,也就是少了上面的1.4.

问题2:未找到 URI“net.tcp://gyoung/Service1.svc/mex”的兼容 TransportManager。这可能是因为使用了指向虚拟应用程序外部的绝对地址,或终结点的绑定设置与其他服务或终结点所设置的绑定设置不匹配。
请注意,同一协议的所有绑定在同一应用程序中应具有相同的设置。

这个问题我并没有找到真正的原因,应该是binding设置的原因,我原先的binding配置是:

<binding name="netTcpBindConfig"  closeTimeout="00:30:00" portSharingEnabled="true"
openTimeout="00:30:00" receiveTimeout="00:30:00" sendTimeout="00:30:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10"
maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxConnections="10"
maxReceivedMessageSize="2147483647">


这样的话会出现上面的错误,但当我将后面四个节点去掉后,即变成:

<binding name="netTcpBindConfig"  closeTimeout="00:30:00" portSharingEnabled="true"
openTimeout="00:30:00" receiveTimeout="00:30:00" sendTimeout="00:30:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10">


就没有报这个错误了。最后一个问题,园子里哪位大神知道具体原因的,求指导~

问题3:有没有必要绑定host地址?

之前我在service节点下有增加host地址

<host>
<baseAddresses>
<add baseAddress="http://localhost:4504"/>
<add baseAddress="net.tcp://localhost:808/Service1.svc"/>
</baseAddresses>
</host>


但我发现这根本不起作用,因不不管我怎么设置,最后我的net.tcp地址都是上面那个,是我设置有错误?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: