server\clientとclient\serverの通信を必要とするWCFサービスがあります。私は.NETリモーティングを使用してこのクエストを開始しましたが、代わりにWCFを調べる必要があると数人から知らされました。
そのため、クエストは私がWCFを学習することから始まり、イベントをサブスクライブするサービスとアプリケーションを正常に作成することができました。サーバーはクライアントに通知し、実際のサーバーアプリケーションをサーバーに移動するまで、すべてが満足していました。その後、大量の問題が始まりました。
私のクライアント設定
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.diagnostics>
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="traceListener"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData="c:\log\Traces.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
<system.serviceModel>
<bindings>
<wsDualHttpBinding>
<binding name="WSDualHttpBinding_ICompany" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" />
<security mode="Message">
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
</wsDualHttpBinding>
</bindings>
<client>
<endpoint address="http://MyServer:8731/Design_Time_Addresses/WCFCallbacks/Message/"
binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_ICompany"
contract="ServiceReference1.ICompany" name="WSDualHttpBinding_ICompany">
</endpoint>
</client>
</system.serviceModel>
</configuration>
マイサーバー構成
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<system.serviceModel>
<services>
<service name="WCFTest.Company" behaviorConfiguration="WCFTest.Company">
<host>
<baseAddresses>
<add baseAddress = "http://localhost:8731/Design_Time_Addresses/WCFCallbacks/Message/" />
</baseAddresses>
</host>
<endpoint address ="" binding="wsDualHttpBinding" contract="WCFTest.ICompany">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WCFTest.Company">
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
クライアントでapp.configをセットアップする方法は、実際のサーバーでサービスを実行し、VS2010ではServiceReferenceをそのサーバーにポイントすることでした。app.configが正常に生成されました。また、クライアントアプリケーションを実行すると、netstatを正常に実行して、クライアントが実際に接続されていることを確認できます。問題は、タイムアウトエラー、SSPIエラーなどが発生することです。トレースログは非常に複雑で混乱しているため、理解できません。
この時点での私の質問は、誰かが私が間違っていることを教えてもらえますか?また、.NET Remotingを使用する必要がありましたか(.NET Remotingを使用した実用的なソリューションはありませんでした)?デュプレックスタイプの接続を維持する必要があることに注意してください。
御時間ありがとうございます!
編集1
これが私のnetstatです:
TCP xxx.xxx.xxx.xxx:8731ホスト名:63444確立済み
編集2
さて、wsDualHttpBindingを実装するのが難しい理由の説明に従って、 NetTcpBindingを使用することになりました。次に、構成の作成に関するこの記事を使用しました。
これが私が最終的に得たものです:
サーバー構成
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<system.serviceModel>
<services>
<service name="WCFTest.Company" behaviorConfiguration="WCFTest.Company">
<host>
<baseAddresses>
<add baseAddress = "net.tcp://localhost:8731/WCFTest/Company" />
</baseAddresses>
</host>
<endpoint address ="net.tcp://localhost:8731/WCFTest/Company" binding="netTcpBinding" contract="WCFTest.ICompany">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WCFTest.Company">
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
クライアント構成
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.diagnostics>
<sources>
<source name="System.ServiceModel"
switchValue="Information, ActivityTracing"
propagateActivity="true">
<listeners>
<add name="traceListener"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData="c:\log\Traces.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="NetTcpBinding_ICompany" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
hostNameComparisonMode="StrongWildcard" listenBacklog="10"
maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
maxReceivedMessageSize="65536">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Transport">
<transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
<message clientCredentialType="Windows" />
</security>
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint address="net.tcp://MyServer:8731/WCFTest/Company"
binding="netTcpBinding" bindingConfiguration="NetTcpBinding_ICompany"
contract="ServiceReference1.ICompany" name="NetTcpBinding_ICompany">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
マイクロソフトが悪い例を提供するのをやめてほしいと本当に願っています。これは非常に苛立たしい考えであり、Duplexの唯一の実装はwsDualHttpBindingを使用しています。彼らはNetTcpBindingについても言及しておらず、違いが何であるかを理解するためにも、これらのテクノロジーに関する豊富な経験が必要になります。少なくとも私にとって、私はプログラミングの人生でまだ非常に若いです。NetTcpBindingについて説明し、例を提供してくれた2人に感謝します。彼らは、ここでの私の実装に大いに役立ちました。