Hey All,

My apologies if I'm missing something basic, but I'm trying to get the in
and out interceptors going with spring/cxf and I'm having some problems.  I
generated my webservice using the wsdl2java tool and have it configured in
spring as follows:

<jaxws:endpoint
            id="endpoint"
            wsdlLocation="endpoint.wsdl"
            implementor="#endpointPort"
            address="/endpoint">
        <jaxws:inInterceptors>
            <bean class="endpoint.soap.interceptor.SoapDebugInterceptor"/>
        </jaxws:inInterceptors>
        <jaxws:outInterceptors>
            <bean class="endpoint.soap.interceptor.SoapDebugInterceptor"/>
        </jaxws:outInterceptors>
    </jaxws:endpoint>

My interceptor code looks like this:

public class SoapDebugInterceptor extends AbstractSoapInterceptor {
    public void handleMessage(SoapMessage soapMessage) throws Fault {
        System.out.println("FIRING INTERCEPTOR");      
    }
}

I am not, however, seeing the interceptor fire at all.  I've additionally
tried the annotations configuration with the same results.  I'm on cxf
2.0.1.

Any help is appreciated,
-jd
-- 
View this message in context: 
http://www.nabble.com/Interceptor-Issue-tf4313110.html#a12279774
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to