werner      2005/05/14 06:46:01

  Modified:    wss4j/src/org/apache/ws/axis/security WSDoAllSender.java
  Log:
  Introduce a special parameter to enable a Null namespace
  for encrypted/signed parts of the SOAP message. Use
  the string "Null" to signal the absent of a namespace.
  
  Revision  Changes    Path
  1.28      +3 -0      
ws-fx/wss4j/src/org/apache/ws/axis/security/WSDoAllSender.java
  
  Index: WSDoAllSender.java
  ===================================================================
  RCS file: 
/home/cvs/ws-fx/wss4j/src/org/apache/ws/axis/security/WSDoAllSender.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- WSDoAllSender.java        23 Nov 2004 17:50:36 -0000      1.27
  +++ WSDoAllSender.java        14 May 2005 13:46:01 -0000      1.28
  @@ -943,6 +943,9 @@
                       nmSpace = reqData.soapConstants.getEnvelopeURI();
                   } else {
                       nmSpace = nmSpace.substring(1);
  +                    if (nmSpace.equals("Null")) {
  +                     nmSpace = null;
  +                    }
                   }
                   String element = partDef[2].trim();
                   if (doDebug) {
  
  
  

Reply via email to