I want to set a session timeout of 30 seconds.
To do so I wrote:
<wsHttpBinding>
<binding name="ServicesBindings">
<security mode="Message">
<message clientCredentialType="Certificate"/>
</security>
<reliableSession enabled="true" inactivityTimeout="00:00:30"/>
</binding>
</wsHttpBinding>
But it don't work!
If I set in this way:
<wsHttpBinding>
<binding name="ServicesBindings" receiveTimeout="00:00:30">
<security mode="Message">
<message clientCredentialType="Certificate"/>
</security>
<reliableSession enabled="true"/>
</binding>
</wsHttpBinding>
it's all correct.
Can someone explain this to me?
Thanks,
Alberto
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…