PC @10.0.0.5:8732でホストされている「GetNameService」と呼ばれるwcf検出可能サービスがあります。これはwsHttpBindingでホストされ、UdpEndpointを介して検出できます。同じネットワーク内でそのようなサービスを検出するクライアント@10.0.0.9もあります。クライアントを実行すると、サービスを検出できますが、検出されたサービスのエンドポイントにはローカルホストが含まれています。どうすればこれが起こるのでしょうか、これで私を助けてください。
いくつかの詳細情報、
使用されるApp.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service name="NameService.GetNameService">
<host>
<baseAddresses>
<add baseAddress = "http://10.0.0.5:8732/Design_Time_Addresses/NameService/GetNameService/" />
</baseAddresses>
</host>
<!-- Service Endpoints -->
<!-- Unless fully qualified, address is relative to base address supplied above -->
<endpoint address ="" binding="wsHttpBinding" contract="NameService.IGetNameService">
<!--
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>
<!-- Metadata Endpoints -->
<!-- The Metadata Exchange endpoint is used by the service to describe itself to clients. -->
<!-- This endpoint does not use a secure binding and should be secured or removed before deployment -->
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information,
set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="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>
</system.serviceModel>
</configuration>
クライアントマシンでブラウザを開き、サービスアドレスを入力すると、サービスの詳細ページが表示されますが、wsdlリンクはローカルホストを指しています(以下を参照)。
svcutil.exe http:// localhost:8732 / Design_Time_Addresses / NameService / GetNameService /?wsdl
それ以外の
svcutil.exe http://10.0.0.5:8732/Design_Time_Addresses/NameService/GetNameService/?wsdl
また、同じアプリケーションは、DNSが利用可能で、システムがスイッチを介して接続されている私の職場では機能するようですが、PCがルーターを介して接続されている自宅では機能しません。これは何かに影響を与える可能性がありますか?!?
更新 IISで実行されておらず、通常のコンソールアプリケーションを介してホストされています