I'm working on replacing a custom soap client.  One thing the old code
did was wrap the eventual sending of the message in a "try/finally"
block so that it could do work in the try block that was guaranteed to
match with code in the finally block.  The two matching blocks are very
simple, just making a single function call.  With CXF, the closest
analogue is a matching "Out" and "In" interceptor.  However, I'm finding
that if certain bad things happen, like a connection timeout, it appears
that the "In" interceptor in the "RECEIVE" phase is never executed.  Is
there some way I can do something analogous to the old code?

Reply via email to