Reliable session faulting for unknown reason

Posted by Scarfman007 on Stack Overflow See other posts from Stack Overflow or by Scarfman007
Published on 2009-07-17T13:38:04Z Indexed on 2014/08/23 4:20 UTC
Read the original article Hit count: 256

Filed under:
|

I am trying to achieve the following - one client-side proxy instance (kept open) accessed by multiple threads using a reliable session. What I have managed so far is to have either A) a reliable session with a client-side proxy which is created and disposed per call or B) what I aim for, but without a reliable session.

When I enable reliable sessions on my binding however, the following behaviour is exhibited:

Client-side

Upon application startup everything appears to work fine until roughly 18 messages in to the WCF session. I firstly get the proxy.InnerChannel.Faulted event raised, then an exception is caught at the point where I am calling the method on the proxy. The exception is a System.TimeoutException, with message:

"The request channel timed out while waiting for a reply after 00:00:59.9062512. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout."

The inner exception has a similar message:

"The request operation did not complete within the allotted timeout of 00:01:00. The time allotted to this operation may have been a portion of a longer timeout."

With the method at the top of the inner stack trace being:

System.ServiceModel.Channels.ReliableRequestSessionChannel.SyncRequest.WaitForReply(TimeSpan timeout)

I then call proxy.Close followed by proxy.Abort (catching and ignoring exceptions). If I utilize the default settings (i.e. have simply <reliableSession/>), then calling proxy. Close results in another System.Timeout exception (although this time the allotted timeout is 00:00:00), however if I override the defaults as specified above no exception is thrown.

Service-side

Utilizing WCF tracing I get a System.ServiceModel.CommunicationException, with message:

"The sequence has been terminated by the remote endpoint. The session has stopped waiting for a particular reply. Because of this the reliable session cannot continue. The reliable session was faulted."

And a stack trace ending at:

System.ServiceModel.AsyncResult.End[TAsyncResult](IAsyncResult result)

When remotely attaching to the server I get the same message, which occurs when code execution steps over the return statement of my service in the service call which causes the error.

The puzzling thing to me is that the service is stable and runs with options A) or B) as decribed at the beginning of my post, and occurs after a varying number of messages (around 18). The former fact points to there being nothing wrong with the code (indeed I have checked that no exceptions are thrown), and the latter just serves to confuse me and is why I modified the settings on the reliable session binding.

I am quite stuck on this. Can anyone suggest why the reliable session would fault in such a way?

© Stack Overflow or respective owner

Related posts about wcf

Related posts about session