Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.6.2
-
Windows 7 64; Axis2/Rampart deployment in Tomcat
Description
When sending a message containing a SAML Token generated by Rampart's STS service, the module PolicyBasedResultsValidator.handleSupportingTokens() throws a RampartException with
message "samlTokenMissing".
I believe the error is due to only attempting to validate an unsigned token. The token created by the STS service is signed as it must be by WS Security requirements.
Starting at line 323 one sees:
else if (token instanceof IssuedToken)
{
//TODO is is enough to check for ST_UNSIGNED results ??
WSSecurityEngineResult samlResult = WSSecurityUtil.fetchActionResult(results, WSConstants.ST_UNSIGNED);
if (samlResult == null)
There needs to be a check for ST_SIGNED.
I do not know how to build the distribution or I would try this myself.