0

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?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Khash
  • 2,500
  • 4
  • 30
  • 56

1 Answers1

1

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.

BennyM
  • 2,796
  • 16
  • 24
  • 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 '09 at 10:10