Hi,

Quoting Massimiliano Masi <[EMAIL PROTECTED]>:

Checked out the latest wss4j trunk. compiled it (mvn -Dtest=false,
clean install)
back to rampart, mvn -Dtest=false clean install, and now it
works.

Thank you for your patch !!!

I am using this on my STS custom  issuer. I get the username and
password in the getPrincipal method by looping in the wsse result, using
wss4j.

So I've somthing like this:

if (o instanceof WSUsernameTokenPrincipal) {
                                                        
WSUsernameTokenPrincipal principal = (WSUsernameTokenPrincipal) o;
                                                        username = 
principal.getName();
                                                        password = 
principal.getPassword();
                                                        principal.getNonce();
                                                        
principal.getPasswordType();
                                                }

If the password is not plaintext, is there a way to get the password, instead
of doing this on my own?

Thank you



----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.


Reply via email to