我有一个名为“GetNameService”的 wcf 可发现服务,它托管在 PC @ 10.0.0.5:8732 上。它由 wsHttpBinding 托管,可通过 UdpEndpoint 发现。我还有一个客户端 @ 10.0.0.9,它在同一网络中发现此类服务。当我运行客户端时,我能够发现该服务,但发现的服务的终点是其中包含 localhost。怎么会这样,请帮帮我。
更多信息,
使用的 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 链接仍然指向 localhost(如下所示)
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,系统通过交换机连接,因为它在我家通过路由器连接个人电脑的地方不起作用。这会影响什么吗?!?
更新 它没有在 IIS 中运行,它是通过一个普通的控制台应用程序托管的