I'm planing to migrate jboss 5 to wildfly 12. There is a web service which is using org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor
to validate access to the service. For that it uses configuration in jboss-cxf.xml as below.
<jaxws:inInterceptors>
<bean class="org.apache.cxf.binding.soap.saaj.SAAJInInterceptor"/>
<bean class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
<property name="properties">
<map>
<entry key="action" value="UsernameToken"/>
<entry key="passwordType" value="PasswordText"/>
<entry key="passwordCallbackClass" value="com.xxx.xxx.ws.wsse.ServerPasswordCallback"/>
</map>
</property>
</bean>
</jaxws:inInterceptors>
In wildfly12 its not reading this xml. There is new configuration file called 'jboss-webservices.xml'. but i couldn't find out a way to migrate this to new version.
Please help on this
I solved this using a ininterceptor annotation. I added org.apache.cxf.interceptor.InInterceptors annotation & provided customized class to set values to required fields of WSS4JInInterceptor & added WSS4JInInterceptor to interceptor chain.
Here is the com.xxx.xx.ws.wsse.WSSecurityInterceptor class
Then set valid password within callback handler class. here is the callback handler class.
Then password validation perform in cxf-rt-ws-security module.