Handle Message for interceptor getting called after the service method is
called

<jaxws:endpoint id="service" implementor="#testServiceimpl"
        address="/testService"> 
     <jaxws:inInterceptors>
            <bean id="test"
        class="org.example.Test"/>
     </jaxws:inInterceptors>
     </jaxws:endpoint>

public class TestInterceptor extends AbstractSoapInterceptor {

    public TestInterceptor() {
        super(Phase.INVOKE);
    }

@Override
    public void handleMessage(SoapMessage message) throws Fault {
        System.out.println("Test");
}
}



--
View this message in context: 
http://cxf.547215.n5.nabble.com/Handle-Message-for-interceptor-getting-called-after-the-service-method-is-called-tp5726932.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to