2

IIS 7 / Win 7でネットTCPバインディングを使用してWCFサービスをホストしようとしています。サービスがホストされており、クライアントアプリケーションでそのサービスへの参照を追加できます。

サービス構成ファイルは次のとおりです。

  <configuration>

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

    </system.web>
    <system.serviceModel>
      <bindings>
        <netTcpBinding>
          <binding name="InsecureTcp" portSharingEnabled ="true">
            <security mode="None">
              <transport clientCredentialType="None" protectionLevel="None" />
            </security>
          </binding>
        </netTcpBinding>
      </bindings>
      <services>
        <service name="ApplicationProcessService">
          <endpoint address="" binding="netTcpBinding" bindingConfiguration="InsecureTcp"
            name="NetTCP_Port10000" contract="IApplicationProcess" />
          <endpoint address="mex" binding="mexHttpBinding" name="mexNetTCP_Port10000"
            contract="IMetadataExchange" />
        </service>
      </services>
      <behaviors>
        <serviceBehaviors>
          <behavior name="">
            <serviceMetadata httpGetEnabled="true" />
            <serviceDebug includeExceptionDetailInFaults="true" />
          </behavior>
        </serviceBehaviors>
      </behaviors>
      <serviceHostingEnvironment multipleSiteBindingsEnabled="true">
        <baseAddressPrefixFilters>
        </baseAddressPrefixFilters>
      </serviceHostingEnvironment>

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

  </configuration>

そして、参照を追加したときにクライアントで生成される構成は次のとおりです。

<configuration>
  <system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="NetTCP_Port10000" 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="524288" maxBufferSize="65536" maxConnections="10"
            maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="None">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
            <message clientCredentialType="Windows" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>
    <client>
      <endpoint address="net.tcp://localhost:10000/ApplicationProcess.svc"
          binding="netTcpBinding" bindingConfiguration="NetTCP_Port10000"
          contract="ApplicationProcessService.IApplicationProcess" name="NetTCP_Port10000" />
    </client>
  </system.serviceModel>
</configuration>

問題は実行時にあり、次のエラーが発生します:-

net.tcp:// localhost:10000/AppServer.ApplicationProcess.svcに接続できませんでした。接続の試行は00:00:02.0582058の期間続きました。TCPエラーコード10061:ターゲットマシンがアクティブに拒否したため、接続できませんでした。

http://www.singingeels.com/Articles/Duplex_WCF_Services_Hosted_in_IIS_Using_NetTcp.aspxで説明されている手順に従いました

ファイアウォールにインバウンドルールを作成して、ポート10000でのTCP通信を許可しました。何が欠けているのかわかりません。何かご意見は?

4

3 に答える 3

2

ここで重要なのは、ポート共有(バインディングではPortSharingEnabled)を有効にしていることです。これには、Windowsではデフォルトで実行されていないTCPポート共有サービスを実行する必要があります。このリンクを参照してください:NetTcpBinding.PortSharingEnabled

于 2011-08-10T23:43:28.123 に答える
2

前述のNet.Tcpポート共有サービスに加えて、Net.Tcpリスナーアダプタサービスを有効にして開始する必要もあります。

于 2011-08-11T00:43:54.190 に答える
0

有効にする必要のあるサービスに加えて、IISがnet.tcpを認識できるようにする必要もありました。Webサイトを右クリック>[アプリケーションの管理]>[詳細設定]を選択します。有効なプロトコルの値は次のようになります:http、net.tcp

于 2013-11-15T01:07:57.843 に答える