[ 
https://issues.apache.org/jira/browse/WSS-589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15522636#comment-15522636
 ] 

Colm O hEigeartaigh commented on WSS-589:
-----------------------------------------

It sounds like you might be using the SIG_PROP_REF_ID incorrectly. The 
SIG_PROP_REF_ID value is a String. This String value is then used as the key 
with which to retrieve the Crypto Object from the message context. For example, 
see the following code from CXF's PolicyBasedWSS4JInInterceptor:

final String signCryptoRefId = signCrypto != null ? "RefId-" + 
signCrypto.hashCode() : null;
        
        if (signCrypto != null) {
            message.put(WSHandlerConstants.DEC_PROP_REF_ID, signCryptoRefId);
            message.put(signCryptoRefId, signCrypto);
        }

> Incorrect cast in WSHandler getString
> -------------------------------------
>
>                 Key: WSS-589
>                 URL: https://issues.apache.org/jira/browse/WSS-589
>             Project: WSS4J
>          Issue Type: Bug
>          Components: WSS4J Core
>            Reporter: Bjørn Hilstad
>            Assignee: Colm O hEigeartaigh
>            Priority: Minor
>             Fix For: 2.1.4
>
>
> When using SIG_PROP_REF_ID you get a ClassCastException because it will try 
> to cast the Crypto instance to a String.
> This happens in line 1382 og WSHandler.
> For me this means that WSSecSignatureSAML will also fail because it fails 
> when the variable userCrypto is null.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@ws.apache.org
For additional commands, e-mail: dev-h...@ws.apache.org

Reply via email to