デュプレックス wcf サービスをサーバーに公開しようとしていますが、成功しませんでした。ローカル IIS に公開することはできますが、サーバーに公開すると、そのアドレスはnet.tcp://win-rhkt30stjd7/Broadcastor/BroadcasterService.svc
. あなたが同意するように、クライアントでサービス参照を作成している間、そのようなアドレスはまったく役に立ちません。WCF アプリケーション プロジェクトとサービス ライブラリ プロジェクトとして公開しようとしましたが、どちらも同じ結果になります。おそらく私のWeb.config
ファイルに何かが欠けていますが、それが何であるかわかりません。ここで私を助けてください。以下は私のWeb.config
ファイルです:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="false" />
<customErrors mode="Off"/>
</system.web>
<system.serviceModel>
<services>
<service name="BroadcastorServiceApp.BroadcastorService">
<endpoint binding="netTcpBinding" contract="BroadcastorServiceApp.IBroadcastorService">
</endpoint>
<endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" />
</service>
</services>
<bindings>
<netTcpBinding>
<binding>
<security mode="None"></security>
</binding>
</netTcpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="True" httpsGetEnabled="True" />
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.webServer>
<directoryBrowse enabled="true" />
</system.webServer>
</configuration>