Here's one for you WCF / Enterprise Library experts.

I have a WCF service which has an error handling behaviour associated with it. If an unhandled exception occurs during a service operation then the handler invokes the logging application block from Enterprise Library 5.0 to log the message to various sources, including a database.

This all works fine in production, but I'm getting some very weird behaviour in an integration test.

The test basically just spins up the service in exactly the same manner as in production, creates a basic client in code using a ChannelFactory, then invokes a service operation with parameters that will throw an exception.

The server-side code works as expected until it hits this line:

var manager = EnterpriseLibraryContainer.Current.GetInstance<ExceptionManager>();

Whereupon the error handling routine just stops completely. I still get a response from the service, but the logging doesn't happen at all. When I look at this line in the debugger, I can see "Function evaluation timed out" for the value of EnterpriseLibraryContainer.Current.

I've played around with timeouts on both send and receive, but it's not that. Also, it's the same problem whether I run or debug the test, so I don't think it's only caused by debugging.

I can fix the problem by ensuring that the Entlib container is created before I invoke the service operation.

I'd really like to know why the error routine is choking though if the container hasn't already been initialized - something to do with threading, perhaps.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.