Hi Guys,

I'm trying to create some advice using AOP or maybe use some default interceptor, so that it'll be like this:

Code:
myownAdvice(){
get soap message
doSomething
=>>>endpoint.doSomething()
}
Is it possible to do that stuff? I want to handle the transaction in based on some value in soap header. So everytime endpoint.doSomething throws an error it'll commit/rollback based on that value in soap header.

thanks in advance...
Andre