You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2003/12/07 05:05:36 UTC

cvs commit: ws-axis/java/xmls properties.xml targets.xml

dims        2003/12/06 20:05:36

  Modified:    java     axis.properties buildTest.xml
               java/xmls properties.xml targets.xml
  Log:
  Trying to fix gump failure.
  
  Revision  Changes    Path
  1.13      +3 -0      ws-axis/java/axis.properties
  
  Index: axis.properties
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/axis.properties,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- axis.properties	24 Mar 2003 01:25:29 -0000	1.12
  +++ axis.properties	7 Dec 2003 04:05:36 -0000	1.13
  @@ -46,3 +46,6 @@
   #http.nonProxyHosts=localhost
   #http.proxyUser=XXXXX
   #http.proxyPassword=XXXX
  +
  +javax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
  +javax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl
  \ No newline at end of file
  
  
  
  1.49      +4 -0      ws-axis/java/buildTest.xml
  
  Index: buildTest.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/buildTest.xml,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- buildTest.xml	19 Nov 2003 15:16:16 -0000	1.48
  +++ buildTest.xml	7 Dec 2003 04:05:36 -0000	1.49
  @@ -170,6 +170,10 @@
   
       <!-- now, run the actual test -->
       <junit dir="${axis.home}" printsummary="yes" haltonfailure="${test.functional.fail}" fork="yes">
  +      <!-- Pass the parser settings -->
  +      <jvmarg value="-Djavax.xml.parsers.DocumentBuilderFactory=${javax.xml.parsers.DocumentBuilderFactory}"/>
  +      <jvmarg value="-Djavax.xml.parsers.SAXParserFactory=${javax.xml.parsers.SAXParserFactory}"/>
  +
         <!-- Pass through the proxy parameters -->
         <jvmarg value="-Dhttp.proxyHost=${http.proxyHost}"/>
         <jvmarg value="-Dhttp.proxyPort=${http.proxyPort}"/>
  
  
  
  1.48      +2 -0      ws-axis/java/xmls/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/xmls/properties.xml,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- properties.xml	1 Dec 2003 21:31:35 -0000	1.47
  +++ properties.xml	7 Dec 2003 04:05:36 -0000	1.48
  @@ -105,6 +105,8 @@
   
   <property name="test.functional.fail" value="yes" />
   
  +<property name="javax.xml.parsers.DocumentBuilderFactory" value="org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"/>
  +<property name="javax.xml.parsers.SAXParserFactory" value="org.apache.xerces.jaxp.SAXParserFactoryImpl"/>
   
   <!-- Place Holder for proxy settings -->
   <property name="http.proxyHost" value=""/>
  
  
  
  1.62      +6 -0      ws-axis/java/xmls/targets.xml
  
  Index: targets.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/xmls/targets.xml,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- targets.xml	5 Dec 2003 13:40:49 -0000	1.61
  +++ targets.xml	7 Dec 2003 04:05:36 -0000	1.62
  @@ -5,6 +5,10 @@
      <target name="my-forking-ant">
        <echo message="Forking a JVM for target ${target} in file ${file}"/>
        <java classname="org.apache.tools.ant.Main" fork="yes" failonerror="true" dir="${dir}">
  +       <!-- Pass the parser settings -->
  +       <jvmarg value="-Djavax.xml.parsers.DocumentBuilderFactory=${javax.xml.parsers.DocumentBuilderFactory}"/>
  +       <jvmarg value="-Djavax.xml.parsers.SAXParserFactory=${javax.xml.parsers.SAXParserFactory}"/>
  +
          <!-- Pass through the proxy parameters -->
          <jvmarg value="-Dhttp.proxyHost=${http.proxyHost}"/>
          <jvmarg value="-Dhttp.proxyPort=${http.proxyPort}"/>
  @@ -350,6 +354,8 @@
       <echo message="javac.fork=${javac.fork}" />
       <!-- Set environment variable axis_nojavadocs=true  to never generate javadocs. Case sensative! -->
       <echo message="axis_nojavadocs=${env.axis_nojavadocs}"/>
  +    <echo message="javax.xml.parsers.DocumentBuilderFactory=${javax.xml.parsers.DocumentBuilderFactory}"/>
  +    <echo message="javax.xml.parsers.SAXParserFactory=${javax.xml.parsers.SAXParserFactory}"/>
   
       <echo message="" />
       <echo message="-- Network Settings ---"/>