I do have Logging IN and OUT interceptors configured...
<jaxws:inInterceptors>
<ref bean="myInterceptor" />
<ref bean="logInbound" />
</jaxws:inInterceptors>
<jaxws:outInterceptors>
<ref bean="saajOutInterceptor" />
<ref bean="logOutbound" />
</jaxws:outInterceptors>
The myInterceptor is defined like this:
<bean id="myInterceptor" class="com.......util.MyInterceptor" />
The MyInterceptor.class extends AbstractSoapInterceptor
public SpaSoapInterceptor() {
super(Phase.*PRE_PROTOCOL*);
getAfter().add(SAAJInInterceptor.class.getName());
}
in the handleMessage (... ) method I do the LDAP authentication part.
--
View this message in context:
http://cxf.547215.n5.nabble.com/Interceptor-Issue-Https-to-Http-tp5721102p5721119.html
Sent from the cxf-user mailing list archive at Nabble.com.