WCF服务超时
在做"Debug"的时候,服务端的“WCF服务”总是超时,然后就不能跳转到“Silverlight”客户端了。图片如下:
[img=http://social.msdn.microsoft.com/Forums/getfile/136018][/img]
--------------------编程问答-------------------- 应该有什么设置的吧。。。 --------------------编程问答-------------------- WCF的访问时间应该如何设置呢???
什么时候超时??? --------------------编程问答-------------------- “WCF”服务时间应该怎样设置呢??? 有效时间??? --------------------编程问答-------------------- 可以增加默认连接连接数.配置文件如下:
<serviceThrottling maxConcurrentCalls="20" maxConcurrentSessions="20" maxConcurrentInstances="30" />
说明:maxConcurrentCalls :最大并发数,默认为16
maxConcurrentSessions :最大的会话数,主要针对于PerSession的情况,默认为10
maxConcurrentInstances:最大实例数,默认为26 --------------------编程问答--------------------
“增加默认连接数”这个和响应超时有关系吗??? --------------------编程问答--------------------
谢谢易做图。补一刀,会话时间怎样设置呢??? --------------------编程问答-------------------- 会话时间呢???
补充:.NET技术 , C#