0
WindowsサービスでHTTP WCFServiceをホストしていますが、ローカルネットワークでは完全に動作しますが、クライアントが別のネットワークにあり、パブリックIPで接続しようとすると機能しません。WindowsサービスでのホストHTTP WCFサービス
設定ファイル:
<add baseAddress="http://localhost:80/WCFService/service/" />
それが原因locahostの使用にループバックアドレスでリスニングすることになります。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<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="WCFService.ServiceBehavior">
<endpoint address="" binding="wsHttpBinding"
contract="WCFService.ServiceContract">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding"
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:80/WCFService/service/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information,
set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
おそらくファイアウォールですか? – FakeCaleb
サーバー部分のweb.configが表示されています。クライアントのweb.configを表示します。 – Piotr
可能重複https://stackoverflow.com/questions/7505126/how-to-set-up-my-wcf-service-to-be-able-to-be-accessed-by-remote-clients – Dmitry