ich einen WCF-Dienst, die ok läuft, wenn ich einen Verweis auf sie hinzufügen, wenn in IIS gehostet wird, aber wenn ich versuche, es in Win-Client-Anwendung hosten App kann es nicht finden. Dies geschieht nur, wenn ich NetTcpBinding verwende. Ich erhalte Fehler „Es gibt keinen Endpunkt bei net.tcp hören war: // localhost: 5566 /, der die Nachricht übernehmen könnte“. Wenn ich basicHttpBinding verwende, funktioniert alles.Problem mit einem Service Verweis auf NetTcpBinding Wcf-Dienst Hinzufügen in Win-Anwendung gehostet
Hier Konfigurationsdatei für den Dienst
<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>
Und hier ist Code von Host-App
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();