I have used spring and Xfire combination to configure WSS4J for user
authentication with WSS4JInHandler. I would like to know whether it is
supported in CXF. Appreciate if someone could help me out on this. My
current configuration is as follows:
<property name="inHandlers">
<list>
<bean
class="org.codehaus.xfire.util.dom.DOMInHandler" />
<bean
class="org.codehaus.xfire.security.wss4j.WSS4JInHandler">
<property name="properties">
<map>
<entry
key="passwordCallbackRef">
<bean
class="com.mydomain.security.PasswordHandler">
</bean>
</entry>
<entry key="action"
value="UsernameToken" />
</map>
</property>
</bean>
<bean
class="com.mydomain.security.ValidateUserTokenHandler" />
</list>
</property>
--
View this message in context:
http://www.nabble.com/WSS4J-implementation-in-CXF-tf4119426.html#a11715464
Sent from the cxf-user mailing list archive at Nabble.com.