Ravisankar Challa opened SWS-1023 and commented
At the moment we have to do this to use encoded passwords
@Override
public boolean handleRequest(MessageContext messageContext) throws WebServiceClientException {
messageContext.setProperty(WSHandlerConstants.USE_ENCODED_PASSWORDS, "true");
}
Please add a new method to org.springframework.ws.soap.security.wss4j2.Wss4jSecurityInterceptor
public void setUseEncodedPasswords(boolean useEncodedPasswords) {
handler.setOption(WSHandlerConstants.USE_ENCODED_PASSWORDS, useEncodedPasswords);
}
No further details from SWS-1023