Client timeout when using WCF through Spring.net
Posted
by Khash
on Stack Overflow
See other posts from Stack Overflow
or by Khash
Published on 2009-10-08T09:15:07Z
Indexed on
2010/06/16
10:32 UTC
Read the original article
Hit count: 451
I'm using WCF through Spring.net WCF integration link text
This works relatively fine, however it seems that WCF and Spring get in each other's way when instantiating client channels. This means that only a single client channel is created for a service and therefore the clients get a timeout after the configured timeout is expired since the same client channel has been open since it was instantiated by Spring.
To make the matters worst, once a channel goes to a fault state, it affect all users of that service since spring doesn't create a new channel for each user.
Has anyone managed to use WCF and Spring.net work together without these issues?
© Stack Overflow or respective owner