7

これは本当に数時間私を悩ませています。TCP バインディングを使用して、最も単純な WCF サービスを作成しました。

namespace WcfTcpService
{
    public class TestTcpService : ITestTcpService
    {
        public string Hello(string name)
        {
            return "Hello, " + name + "!";
        }
    }
}

namespace WcfTcpService
{
    [ServiceContract]
    public interface ITestTcpService
    {
        [OperationContract]
        string Hello(string name);
    }
}

Web.config ファイルには次のセクションがあります。

  <system.serviceModel>
    <services>
      <service name="WcfTcpService.TestTcpService" behaviorConfiguration="TestServiceBehavior">
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:808/WcfTcpService.TestTcpService" />
          </baseAddresses>
        </host>
        <endpoint address="" binding="netTcpBinding" bindingConfiguration="tcpBinding" contract="WcfTcpService.ITestTcpService"></endpoint>
        <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" contract="IMetadataExchange"></endpoint>
      </service>
    </services>
    <bindings>
      <netTcpBinding>
        <binding name="tcpBinding" portSharingEnabled="true">
          <security mode="None"></security>
        </binding>
      </netTcpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="TestServiceBehavior">
          <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
          <!-- 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>
    <!--<protocolMapping>
      <add binding="basicHttpsBinding" scheme="https" />
      <add binding="netTcpBinding" scheme="net.tcp" />
    </protocolMapping>-->    
    <!--<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />-->
  </system.serviceModel>

このサービスは IIS でホストされています。

詳細設定

net.tcp://localhost:808/WcfTcpService.TestTcpServiceここで、クライアント アプリケーションからへの参照を追加しようとすると、エラーが発生し続けます。

The URI prefix is not recognized.
Metadata contains a reference that cannot be resolved: 'net.tcp://localhost/WcfTcpService.TestTcpService'.
The message could not be dispatched because the service at the endpoint address 'net.tcp://localhost/WcfTcpService.TestTcpService' is unavailable for the protocol of the address.
If the service is defined in the current solution, try building the solution and adding the service reference again.

net.tcp サービスが実行されていますが、WcfTestClient.exe で同じエラーが発生します。を正常に実行できますhttp://localhost/WcfTcpService/TestTcpService.svc

私はグーグルを検索しましたが、何も出てきませんでした。

ありがとう!

編集:

「既定の Web サイト」のバインド画面は次のようになります。

バインディング

4

2 に答える 2

9

netTcpBinding を使用するサービスを作成し、Visual Studio でサービス参照を追加する場合は、サービスがリッスンする実際の tcp アドレスではなく、http アドレス (httpGetEnabled) を使用する必要があります。したがって、解決策は、[サービス参照の追加] ダイアログで localhost/WcfTcpService/TestTcpService.svc を URL として設定することでした。

于 2013-07-26T18:50:09.050 に答える