メッセージ暗号化で wsHttpBinding を使用する WCF サービスがあります。障害が発生しない限り、同じサービス参照を使用します。障害が発生した場合は、新しいサービス参照を作成します。セッションがタイムアウトし、サービスが終了したのに、クライアント アプリケーションの CommunicationState が Opened のままであるという問題が発生しています。
接続がタイムアウトしたかどうかを ClientBase で確認するにはどうすればよいですか? 現在のサービス プロキシがタイムアウトした場合に、クライアント アプリケーションで新しいサービス プロキシを作成したいと考えています。
以下は私のクライアント側バインディングです:
<wsHttpBinding>
<binding name="wsHttpBindingWithAuthClient" 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="20000000"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>