0

WinForms プロジェクトで参照しようとしている複数の WCF プロジェクトがあります。サービス参照を追加しようとすると、いくつかのプロジェクトが表示されますが、アドレスを手動で入力しても 1 つが表示されず、追加できません。私がそれをすると、次のようになります:

メタデータに解決できない参照が含まれています: 'net.tcp://localhost:14007/DispatchPuller/mex'。net.tcp://localhost:14007/DispatchPuller/mex に接続できませんでした。接続の試行は、00:00:01.0062012 の期間続きました。TCP エラー コード 10061: ターゲット マシンがアクティブに拒否したため、接続できませんでした 127.0.0.1:14007。ターゲット マシンがアクティブに拒否したため、接続できませんでした 127.0.0.1:14007

私が知る限り、すべてのサービスは同じように設定されています。ここに2つあり、そのうちの1つでエラーが発生します:

<system.serviceModel>
    <services>
      <service name="PASWCFDispatchPuller.DispatchPuller" behaviorConfiguration="tcpbehaviuor">
        <endpoint address="" binding="netTcpBinding" bindingConfiguration="" name="nettcpDispatchPuller" contract="PASWCFDispatchPuller.IDispatchPuller">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="mexDispatchPuller" contract="IMetadataExchange"/>
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:12007/DispatchPuller"/>
          </baseAddresses>
        </host>
      </service>

      <service name="PASWCFDispatchPuller.StateUpdate" behaviorConfiguration="tcpbehaviuor">
        <endpoint address="" binding="netTcpBinding" bindingConfiguration="" name="nettcpStateUpdate" contract="PASWCFDispatchPuller.IStateUpdate">
          <identity>
            <dns value="localhost"/>
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="mexStateUpdate" contract="IMetadataExchange"/>
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:12007/StateUpdate"/>
          </baseAddresses>
        </host>
      </service>

    </services>
    <behaviors>
      <serviceBehaviors>
        <!--<behavior >-->
        <behavior name="tcpbehaviuor">
          <!-- To avoid disclosing metadata information, 
            set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="false"/>
          <!-- 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>
  </system.serviceModel>

一番下のサービスへの参照を追加しても問題ありません。一番上のポートの変更も何もしません。任意の提案をいただければ幸いです。

4

0 に答える 0