vote up 0 vote down star

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?

flag

1 Answer

vote up 1 vote down check

I've created a small library to help you with Spring.NET in these circumstances. You can find the svn repo here. More info can be found on my blog.

link|flag
thanks Benny. I came across your library a while ago and it was the closest thing to what I needed. I managed to change it a little bit to fit my requirements (like interface inheritance), but the project got canned because of other WCF issues. Thanks very much for the help. You should submit your library to Spring! – Khash Oct 30 at 10:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.