私はVS2010でWCFアプリケーションを開発しています。 IDE内のデバッガを使用してホストアプリケーションとクライアントを実行すると、すべてが意図どおりに機能します。WCF SocketException
私は(/ binに/デバッグ/フォルダへ行く)手動で2つの実行を実行したときしかし、私はクライアントからの次の例外を取得:
System.Net.Sockets.SocketException:いいえ接続が可能ことができませんでしたターゲットマシンが積極的127.0.0.1:8732
を拒否したため、奇妙なことには、app.configファイルで私は8732.
何が問題になっています、ポート5000を使用しないように指定していされて作ったのですか?前もって感謝します。
編集:ここでは、ホストアプリケーションのための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="WCFServiceLibrary.SavalotServiceObject">
<endpoint address="" binding="wsHttpBinding" contract="WCFServiceLibrary.ISavalotService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:5000/Design_Time_Addresses/WCFServiceLibrary/SavalotServiceObject/" />
</baseAddresses>
</host>
</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>
ctrl + F5を押してデバッグせずに実行するとどうなりますか? – deltree
@deltree同じエラーです。 – Xenoprimate
あなたの問題は、設定ファイルにデバッグ固有の設定があることです。 – deltree