2010-12-23 14 views
0

IISでホストされているときに参照を追加してもOKですが、アプリケーションクライアントでホストしようとするとWCFサービスが実行されていますアプリはそれを見つけることができません。これは、NetTcpBindingを使用する場合にのみ発生します。 "net.tcp:// localhost:5566 /でメッセージを受け付けるエンドポイントがない"というエラーが表示されます。 basicHttpBindingを使用しているときは、すべてが機能しています。サービスリファレンスをNetTcpBinding wcfサービスに追加する際に問題が発生する

はここでサービス

<system.serviceModel> 
<services> 
    <service name="TestWcfService.Service1" behaviorConfiguration="TestWcfService.Service1Behavior"> 
    <!-- Service Endpoints --> 
    <endpoint address="" binding="netTcpBinding" contract="TestWcfService.IService1"> 
     <!-- 
      Upon deployment, the following identity element should be removed or replaced to reflect the 
      identity under which the deployed service runs. If removed, WCF will infer an appropriate identity 
      automatically. 
     --> 
     <identity> 
     <dns value="localhost"/> 
     </identity> 
    </endpoint> 
    <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/> 
    </service> 
</services> 
<behaviors> 
    <serviceBehaviors> 
    <behavior name="TestWcfService.Service1Behavior"> 
     <!-- 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> 

のための設定ファイルだと、ここで、ホストアプリからコードをだ

ServiceHost host = new ServiceHost(typeof(Service1), new Uri("net.tcp://localhost:5566")); 
ServiceMetadataBehavior behavior = new ServiceMetadataBehavior(); 
behavior.HttpGetEnabled = false; 
host.Description.Behaviors.Add(behavior); 
host.AddServiceEndpoint(typeof(IService1), new NetTcpBinding(), "Service1"); 
host.AddServiceEndpoint(typeof(IMetadataExchange), new NetTcpBinding(), "MEX"); 
host.Open(); 

答えて

0

あなたは、このようなあなたのTCPエンドポイントを追加する場合:その後、

ServiceHost host = new ServiceHost(typeof(Service1), 
            new Uri("net.tcp://localhost:5566")); 

host.AddServiceEndpoint(typeof(IService1), new NetTcpBinding(), "Service1"); 

きみの サービスアドレスはnet.tcp://localhost:5566/Service1ServiceHostコンストラクタで定義されたベースアドレスとAddServiceEndpointコールで定義された相対アドレス)です。 - メッセージを送信しようとしましたか?

関連する問題