You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by "Bernhard Roider (JIRA)" <ji...@apache.org> on 2007/08/16 09:07:31 UTC

[jira] Created: (RAMPART-71) SecurityContextTokenBuilder uses wrong QName

SecurityContextTokenBuilder uses wrong QName
--------------------------------------------

                 Key: RAMPART-71
                 URL: https://issues.apache.org/jira/browse/RAMPART-71
             Project: Rampart
          Issue Type: Bug
          Components: rampart-policy
    Affects Versions: 1.3
         Environment: all
            Reporter: Bernhard Roider
            Priority: Critical


the method getKnownElements() of SecurityContextTokenBuilder return the wrong QName (QName for SecureConverationToken) !!!!

public QName[] getKnownElements() {
        return new QName[] {Constants.SECURE_CONVERSATION_TOKEN};
}

Solution:
public QName[] getKnownElements() {
        return new QName[] {Constants.SECURITY_CONTEXT_TOKEN};
}



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (RAMPART-71) SecurityContextTokenBuilder uses wrong QName

Posted by "Ruchith Udayanga Fernando (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/RAMPART-71?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ruchith Udayanga Fernando resolved RAMPART-71.
----------------------------------------------

    Resolution: Fixed

Fixed :

http://svn.apache.org/viewvc?view=rev&rev=566525
http://svn.apache.org/viewvc?view=rev&rev=566524

Thanks,
Ruchith

> SecurityContextTokenBuilder uses wrong QName
> --------------------------------------------
>
>                 Key: RAMPART-71
>                 URL: https://issues.apache.org/jira/browse/RAMPART-71
>             Project: Rampart
>          Issue Type: Bug
>          Components: rampart-policy
>    Affects Versions: 1.3
>         Environment: all
>            Reporter: Bernhard Roider
>            Priority: Critical
>
> the method getKnownElements() of SecurityContextTokenBuilder return the wrong QName (QName for SecureConverationToken) !!!!
> public QName[] getKnownElements() {
>         return new QName[] {Constants.SECURE_CONVERSATION_TOKEN};
> }
> Solution:
> public QName[] getKnownElements() {
>         return new QName[] {Constants.SECURITY_CONTEXT_TOKEN};
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.