tags:

views:

773

answers:

2

If I have this configuration:

      <reliableSession
        ordered="true"            
        inactivityTimeout="00:10:00"
        enabled="false" />

Is the inactivityTimeout effective (even if reliableSession is not enabled)?

EDIT : If is not effective, can you control inactivity timeout elsewhere?

Thanks

A: 

I do not think that this is used unless you use reliable session.

You can set the timeout on the binding, there is a sendtimeout, closetimeout ....

Shiraz Bhaiji
A: 

I found the answer in the MSDN doc. The receiveTimeout of the Binding element is also an inactivity timeout. When reliableSession is enabled both values are effective.

Sly