如果我在服务器上创建Web服务,例如ASMX或WCF服务,并通过客户端连接到它。
如果我不明确地告诉客户关闭连接,或者即使在客户端关闭后,连接会关闭(返回池),或者是否会保持打开状态?
该连接将根据默认超时值或您在Web.config文件中所述的内容自动关闭。
默认值是 1分钟。
<configuration>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding openTimeout="00:10:00"
closeTimeout="00:10:00"
sendTimeout="00:10:00"
receiveTimeout="00:10:00">
</binding>
</wsHttpBinding>
</bindings>
</system.serviceModel>