net.pipe Timeout
-
Monday, March 24, 2008 12:46 PM
Hi,
I have a web site that uses a net.pipe to connect a WCF Service. I don't know why but sometime I receive "TimeoutException".
I think that is a "maxConcurrentCalls", so how I can configure into app.config ?
Regards,
Answers
-
Monday, March 24, 2008 1:17 PMModerator
Look here for how to setup throttling and quotas:
http://www.danrigsby.com/blog/index.php/2008/02/20/how-to-throttle-a-wcf-service-help-prevent-dos-attacks-and-maintain-wcf-scalability/
You probably want to look at the timeout settings on teh binding though: http://msdn2.microsoft.com/en-us/library/ms731291.aspx
You have openTimeout, receiveTimeout, sendTimeout, and closeTimeout
Also are you using sessions that may have timed out?
http://blogs.msdn.com/madhuponduru/archive/2007/02/24/how-to-change-wcf-session-time-out-value.aspx
All Replies
-
Monday, March 24, 2008 1:17 PMModerator
Look here for how to setup throttling and quotas:
http://www.danrigsby.com/blog/index.php/2008/02/20/how-to-throttle-a-wcf-service-help-prevent-dos-attacks-and-maintain-wcf-scalability/
You probably want to look at the timeout settings on teh binding though: http://msdn2.microsoft.com/en-us/library/ms731291.aspx
You have openTimeout, receiveTimeout, sendTimeout, and closeTimeout
Also are you using sessions that may have timed out?
http://blogs.msdn.com/madhuponduru/archive/2007/02/24/how-to-change-wcf-session-time-out-value.aspx -
Monday, March 24, 2008 7:00 PM
Thanks. I will configure it.

