You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/10/24 20:09:13 UTC

svn commit: r1535470 - /cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java

Author: dkulp
Date: Thu Oct 24 18:09:13 2013
New Revision: 1535470

URL: http://svn.apache.org/r1535470
Log:
Merged revisions 1535105 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes

........
  r1535105 | dkulp | 2013-10-23 14:33:39 -0400 (Wed, 23 Oct 2013) | 10 lines

  Merged revisions 1533558 via  git cherry-pick from
  https://svn.apache.org/repos/asf/cxf/trunk

  ........
    r1533558 | dkulp | 2013-10-18 13:10:04 -0400 (Fri, 18 Oct 2013) | 2 lines

    Set the correct element name for the response.

  ........

........

Modified:
    cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java

Modified: cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java?rev=1535470&r1=1535469&r2=1535470&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java (original)
+++ cxf/branches/2.6.x-fixes/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSUtils.java Thu Oct 24 18:09:13 2013
@@ -232,7 +232,7 @@ public final class STSUtils {
                                            MessageInfo.Type.OUTPUT);
         oi.setOutput("CancelSecurityTokenResponseMsg", mio);
         mpi = mio.addMessagePart("response");
-        mpi.setElementQName(new QName(namespace, "RequestSecurityToken"));
+        mpi.setElementQName(new QName(namespace, "RequestSecurityTokenResponse"));
         return oi;
     }
 }