我想將會話超時設置爲30秒。WCF會話超時
要做到這一點,我寫:
<wsHttpBinding>
<binding name="ServicesBindings">
<security mode="Message">
<message clientCredentialType="Certificate"/>
</security>
<reliableSession enabled="true" inactivityTimeout="00:00:30"/>
</binding>
</wsHttpBinding>
但它不工作!
如果我以這種方式設置:
<wsHttpBinding>
<binding name="ServicesBindings" receiveTimeout="00:00:30">
<security mode="Message">
<message clientCredentialType="Certificate"/>
</security>
<reliableSession enabled="true"/>
</binding>
</wsHttpBinding>
這是正確的。
有人可以向我解釋這個嗎?
謝謝,
阿爾貝託
謝謝, 我不知道爲什麼第一個例外沒有工作... – Alberto 2009-06-11 07:59:01