snichol     2002/10/11 08:02:05

  Modified:    java/src/org/apache/soap Envelope.java
  Log:
  Fix bug in which incorrect URI used for xsi prefix that was introduced with
  last set of changes.
  
  Revision  Changes    Path
  1.10      +1 -1      xml-soap/java/src/org/apache/soap/Envelope.java
  
  Index: Envelope.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/src/org/apache/soap/Envelope.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Envelope.java     4 Oct 2002 12:58:26 -0000       1.9
  +++ Envelope.java     11 Oct 2002 15:02:04 -0000      1.10
  @@ -90,7 +90,7 @@
       setAttribute(N_SOAP_ENV, Constants.NS_URI_SOAP_ENV);
   
       // Declare the "xsi" namespace.
  -    setAttribute(N_SCHEMA_XSI, Constants.NS_PRE_SCHEMA_XSI);
  +    setAttribute(N_SCHEMA_XSI, Constants.NS_URI_CURRENT_SCHEMA_XSI);
   
       // Declare the "xsd" namespace.
       setAttribute(N_SCHEMA_XSD, Constants.NS_URI_CURRENT_SCHEMA_XSD);
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to