2011-09-30 18 views
8

クライアントとサーバーのアプリケーションでWCFサービスを使用していて、サーバーとクライアント間の通信中に次のエラーが発生しました。複数のデータがロードされているときにWCFサービスチャネルのCommunicationObjectAbortedExceptionが発生しました

Error Message =>> System.ServiceModel.CommunicationObjectAbortedException: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it has been Aborted. 

Server stack trace: 
    at System.ServiceModel.Channels.CommunicationObject.ThrowIfDisposedOrNotOpen() 
    at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout) 
    at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation) 
    at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message) 

Exception rethrown at [0]: 
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) 
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) 
    at ServiceLib.ServiceCallbackInterfaces.IHostServiceCallback.SendEventAndStatus(String message, Boolean isBackupGenerated) 
    at ServiceLib.Services.DriversService.objDriver_EventReceived(Object sender, EventReceivedEventArgs e) 

アプリケーションシナリオ:クライアントは、WCFサービスを介してサーバからデータを取得し、結合NETTCP使用されます。サーバーは実際のデバイスと接続され、毎秒20〜30のイベントを生成します。生成されたイベントは、WCFのコールバックインターフェイスを使用して、接続されているすべてのクライアントに文字列メッセージとしてプッシュされます。クライアントにプロセス負荷がない場合(イベントと表示を受信するだけで)、うまくいきます。しかし、クライアントサイドでいくつかのローディングプロセスを実行し、しばらくビジー状態になるとエラーになります。

注:私はすでにnettcpバインディングですべてのタイムアウトを以下のように設定していましたが、まだ解決されていません。

NetTcpBinding tcpBinding = new NetTcpBinding(SecurityMode.None); 
       tcpBinding.MaxBufferPoolSize = 2147483647; 
       tcpBinding.MaxReceivedMessageSize = 2147483647; 
       tcpBinding.MaxBufferSize = 2147483647; 
       tcpBinding.ReaderQuotas.MaxStringContentLength = 2147483647; 
       tcpBinding.ReaderQuotas.MaxDepth = 2147483647; 
       tcpBinding.ReaderQuotas.MaxBytesPerRead = 2147483647; 
       tcpBinding.ReaderQuotas.MaxNameTableCharCount = 2147483647; 
       tcpBinding.ReaderQuotas.MaxArrayLength = 2147483647; 
       tcpBinding.SendTimeout = TimeSpan.MaxValue; 
       tcpBinding.ReceiveTimeout = TimeSpan.MaxValue; 
       tcpBinding.ReliableSession.InactivityTimeout = TimeSpan.MaxValue; 

通信チャネルまたはバインディングに関連する他の設定は必要ですか?

UPDATE:SVCトレーサーによってスローエラー:あなたはあなたの質問で述べたように

<E2ETraceEvent xmlns="http://schemas.microsoft.com/2004/06/E2ETraceEvent"> 
<System xmlns="http://schemas.microsoft.com/2004/06/windows/eventlog/system"> 
<EventID>131075</EventID> 
<Type>3</Type> 
<SubType Name="Error">0</SubType> 
<Level>2</Level> 
<TimeCreated SystemTime="2011-09-30T08:37:01.5691715Z" /> 
<Source Name="System.ServiceModel" /> 
<Correlation ActivityID="{00000000-0000-0000-0000-000000000000}" /> 
<Execution ProcessName="ServerUtility" ProcessID="2396" ThreadID="5" /> 
<Channel /> 
<Computer>TEST</Computer> 
</System> 
<ApplicationData> 
<TraceData> 
<DataItem> 
<TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Error"> 
<TraceIdentifier>http://msdn.microsoft.com/it-IT/library/System.ServiceModel.Diagnostics.ThrowingException.aspx</TraceIdentifier> 
<Description>Throwing an exception.</Description> 
<AppDomain>ServerUtility.exe</AppDomain> 
<Exception> 
<ExceptionType>System.ServiceModel.CommunicationException, System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</ExceptionType> 
<Message>The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '10675199.02:48:05.4775807'.</Message> 
<StackTrace> 
at System.ServiceModel.Channels.SocketConnection.EndRead() 
at System.ServiceModel.Channels.DelegatingConnection.EndRead() 
at System.ServiceModel.Channels.SessionConnectionReader.OnAsyncReadComplete(Object state) 
at System.ServiceModel.Channels.SocketConnection.FinishRead() 
at System.ServiceModel.Channels.SocketConnection.AsyncReadCallback(Boolean haveResult, Int32 error, Int32 bytesRead) 
at System.ServiceModel.Channels.OverlappedContext.CompleteCallback(UInt32 error, UInt32 numBytes, NativeOverlapped* nativeOverlapped) 
at System.Runtime.Fx.IOCompletionThunk.UnhandledExceptionFrame(UInt32 error, UInt32 bytesRead, NativeOverlapped* nativeOverlapped) 
at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP) 
</StackTrace> 
<ExceptionString>System.ServiceModel.CommunicationException: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '10675199.02:48:05.4775807'. ---&gt; System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host 
    --- End of inner exception stack trace ---</ExceptionString> 
<InnerException> 
<ExceptionType>System.Net.Sockets.SocketException, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</ExceptionType> 
<Message>An existing connection was forcibly closed by the remote host</Message> 
<StackTrace> 
at System.ServiceModel.Channels.SocketConnection.EndRead() 
at System.ServiceModel.Channels.DelegatingConnection.EndRead() 
at System.ServiceModel.Channels.SessionConnectionReader.OnAsyncReadComplete(Object state) 
at System.ServiceModel.Channels.SocketConnection.FinishRead() 
at System.ServiceModel.Channels.SocketConnection.AsyncReadCallback(Boolean haveResult, Int32 error, Int32 bytesRead) 
at System.ServiceModel.Channels.OverlappedContext.CompleteCallback(UInt32 error, UInt32 numBytes, NativeOverlapped* nativeOverlapped) 
at System.Runtime.Fx.IOCompletionThunk.UnhandledExceptionFrame(UInt32 error, UInt32 bytesRead, NativeOverlapped* nativeOverlapped) 
at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP) 
</StackTrace> 
<ExceptionString>System.Net.Sockets.SocketException (0x80004005): An existing connection was forcibly closed by the remote host</ExceptionString> 
<NativeErrorCode>2746</NativeErrorCode> 
</InnerException> 
</Exception> 
</TraceRecord> 
</DataItem> 
</TraceData> 
<System.Diagnostics xmlns="http://schemas.microsoft.com/2004/08/System.Diagnostics"> 
<LogicalOperationStack></LogicalOperationStack> 
<Timestamp>4730654290080</Timestamp> 
</System.Diagnostics> 
</ApplicationData> 
</E2ETraceEvent> 
+0

サービスが例外をスローしているかどうかを確認してください。未処理の例外はチャンネルをフォルトします。拘束力のある問題ではないかもしれません。 – Tim

+1

@Timは何を言ったのですか? Service Trace Viewerを使用する方法については、http://msdn.microsoft.com/en-us/library/ms732023.aspx –

+0

を参照してください。@JeremyMcGee:Service Trace Viewerの使用方法はあまりありません。私を案内してもらえますか? –

答えて

4

、あなたは最高にすべてのタイムアウトを設定しています。だから私の意見では、あなたが定義したInstanceContextModeに問題があるはずです。サービスでどのモードを定義しましたか? PerSession、PerCallまたはSingle。 PerCallが定義され、同じオブジェクト(グローバルに宣言されたサービスオブジェクト)によってサービスを呼び出すと、フォルト状態または接続が切断された状態になる可能性があります。

PerSessionモードを定義した場合、クライアント側から単一オブジェクト(グローバルに宣言された)を使用してサービスからデータを取得します。 PerCallオプションを定義した場合は、毎回新しいオブジェクトを作成してください。

このヘルプをお寄せください。どうかご遠慮なくご相談ください...

+0

私は複数のサービスを持っていますが、HostServiceという1つのメインサービスはPerSessionモードを持ち、他のすべてのサービスはPerCallモードを持っています。メインサービスでは、コールバックメソッドを使用してすべてのクライアントにイベントをプッシュする必要があるため、静的ハッシュテーブルに接続されたクライアントのリストを維持しています。だから私はそのリストにすべての接続されたクライアントのconextオブジェクトを保存しています。クライアント側では、毎回新しいオブジェクトを呼び出してサービスを呼び出しています。 –

+0

すべてのクライアントにイベント通知を送信する方法を説明してください。私はそれのためにいくつかのコードを投稿することができますを意味します。もう1つは、PerCallモードの別のサービスを呼び出すときに、クライアントにイベント通知を送信するときです。 – Chief

+0

前にお話したように、コールバックメソッドを使用してイベント通知を送信しています。クライアントアプリケーションで作業モード(スーパーバイザ、セットアップ、オフライン)を変更すると、イベントログ通知が送信されます。サーバーからの通知として接続されたクライアント。 –