You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2005/08/22 00:32:59 UTC

cvs commit: ws-axis/java/src/org/apache/axis/utils XMLUtils.java

dims        2005/08/21 15:32:59

  Modified:    java/src/org/apache/axis/utils XMLUtils.java
  Log:
  Fix for AXIS-2179 - Configuration property axis.xml.reuseParsers not documented - significant performance boost
  
  switch reuse to true...one can always switch it off if they run into problems.
  
  Revision  Changes    Path
  1.104     +1 -1      ws-axis/java/src/org/apache/axis/utils/XMLUtils.java
  
  Index: XMLUtils.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/utils/XMLUtils.java,v
  retrieving revision 1.103
  retrieving revision 1.104
  diff -u -r1.103 -r1.104
  --- XMLUtils.java	1 Mar 2005 00:13:36 -0000	1.103
  +++ XMLUtils.java	21 Aug 2005 22:32:59 -0000	1.104
  @@ -110,7 +110,7 @@
           initSAXFactory(null, true, false);
   
           String value = AxisProperties.getProperty(AxisEngine.PROP_XML_REUSE_SAX_PARSERS,
  -                "" + false);
  +                "" + true);
           if (value.equalsIgnoreCase("true") ||
                   value.equals("1") ||
                   value.equalsIgnoreCase("yes")) {