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 se...@apache.org on 2002/08/02 20:43:38 UTC

cvs commit: xml-axis/java/test/wsdl/wrapped buildComponent.xml

seibert     2002/08/02 11:43:38

  Modified:    java/test/wsdl/_import buildComponent.xml
               java/test/wsdl/arrays buildComponent.xml
               java/test/wsdl/clash buildComponent.xml
               java/test/wsdl/datatypes buildComponent.xml
               java/test/wsdl/faults buildComponent.xml
               java/test/wsdl/filegen buildComponent.xml
               java/test/wsdl/inheritance buildComponent.xml
               java/test/wsdl/inout buildComponent.xml
               java/test/wsdl/marrays buildComponent.xml
               java/test/wsdl/multibinding buildComponent.xml
               java/test/wsdl/multiref buildComponent.xml
               java/test/wsdl/names buildComponent.xml
               java/test/wsdl/nested buildComponent.xml
               java/test/wsdl/opStyles buildComponent.xml
               java/test/wsdl/parameterOrder buildComponent.xml
               java/test/wsdl/refattr buildComponent.xml
               java/test/wsdl/roundtrip buildComponent.xml
               java/test/wsdl/sequence buildComponent.xml
               java/test/wsdl/types buildComponent.xml
               java/test/wsdl/wrapped buildComponent.xml
  Log:
  Update of old test component files
  
  Revision  Changes    Path
  1.2       +7 -0      xml-axis/java/test/wsdl/_import/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/_import/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:23 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -52,6 +52,13 @@
           <mapping namespace="urn:iface.import.test" package="test.import2.iface"/>
           <mapping namespace="urn:messages.import.test" package="test.import2.messages"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/_import/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/arrays/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/arrays/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:23 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -32,6 +32,18 @@
                  testcase="no">
           <mapping namespace="urn:ArrayTest2" package="test.wsdl.arrays"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/arrays/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/arrays/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +11 -1     xml-axis/java/test/wsdl/clash/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/clash/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -18,7 +18,9 @@
   
   <target name="clean"/>
   
  -<target name="copy"/>
  +<target name="copy">
  +    <ant inheritAll="true" antfile="buildTest.xml" target="filegen"/>
  +</target>
   
   <target name="compile" depends="copy">
     <echo message="Compilig test.wsdl.clash"/>
  @@ -28,6 +30,14 @@
                  testcase="yes"
                  serverSide="yes">
       </wsdl2java>
  +
  +    <copy file="${test.dir}/wsdl/clash/VerifyFilesTestCase.java" tofile="${build.dir}/work/test/wsdl/clash/VerifyFilesTestCase.java" />
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/clash/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/datatypes/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/datatypes/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -30,6 +30,18 @@
                  testcase="yes">
           <mapping namespace="urn:dataTypes" package="test.wsdl.datatypes"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/datatypes/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/datatypes/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +11 -0     xml-axis/java/test/wsdl/faults/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/faults/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -32,6 +32,17 @@
                  noimports="no">
           <mapping namespace="http://test.com/wsdl/faults" package="test.wsdl.faults"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/faults/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/faults/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +11 -0     xml-axis/java/test/wsdl/filegen/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/filegen/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -40,6 +40,17 @@
                  all="yes">
           <mapping namespace="http://test.com/reference" package="test.wsdl.filegenAll"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/filegen/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/filegen/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +14 -0     xml-axis/java/test/wsdl/inheritance/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/inheritance/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -28,6 +28,7 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  noimports="no"
                  verbose="no"
                  testcase="no">
  @@ -62,6 +63,7 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  noimports="no"
                  verbose="no"
                  testcase="no">
  @@ -71,6 +73,7 @@
       <!-- inheritance test (cont): Test the stopClass and exclude switches -->
       <!-- Compile class files -->
       <javac srcdir="${test.dir}/wsdl/inheritance" destdir="${build.dest}" debug="${debug}">
  +        <classpath refid="classpath" />
           <include name="Baby*.java"/>
           <include name="Child*.java"/>
           <include name="Parent*.java"/>
  @@ -87,6 +90,17 @@
           <mapping namespace="urn:InheritanceTest3" package="test.wsdl.inheritance"/>
       </java2wsdl>
   
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/inheritance/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/inheritance/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +18 -0     xml-axis/java/test/wsdl/inout/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/inout/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -27,11 +27,29 @@
                  output="build/work"
                  deployscope="none"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  noimports="no"
                  verbose="no"
                  testcase="no">
           <mapping namespace="http://www.apache.org/inout" package="test.wsdl.inout"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/inout/*.java" />
  +    </javac>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/include/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/inout/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +13 -0     xml-axis/java/test/wsdl/marrays/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/marrays/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -27,6 +27,7 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
           <mapping namespace="urn:MArrayTests" package="test.wsdl.marrays"/>
       </wsdl2java>
  @@ -36,9 +37,21 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
           <mapping namespace="urn:MArrayTests" package="test.wsdl.marrays"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/marrays/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/marrays/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +13 -4     xml-axis/java/test/wsdl/multibinding/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/multibinding/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -22,13 +22,22 @@
   
   <target name="compile" depends="copy">
     <echo message="Compilig test.wsdl.multibinding"/>
  -  <!-- Multiple-binding test with different literal usage -->
  -  <wsdl2java url="test/wsdl/multibinding/multibinding.wsdl"
  +    <!-- Multiple-binding test with different literal usage -->
  +    <wsdl2java url="test/wsdl/multibinding/multibinding.wsdl"
                  output="build/work"
  -               skeletonDeploy="yes"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
  -  </wsdl2java>
  +    </wsdl2java>
  +
  +    <copy file="${test.dir}/wsdl/multibinding/VerifyFilesTestCase.java" tofile="${build.dir}/build/work/test/wsdl/multibinding/VerifyFilesTestCase.java"/>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/multibinding/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/multiref/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/multiref/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -27,12 +27,24 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  noimports="no"
                  verbose="no"
                  testcase="no">
           <mapping namespace="urn:MultiRefTest2" package="test.wsdl.multiref"/>
       </wsdl2java>
   
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/multiref/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/multiref/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +7 -0      xml-axis/java/test/wsdl/names/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/names/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  @@ -34,6 +34,13 @@
                  testcase="yes">
           <mapping namespace="http://test.com/reference" package="test.filegen"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/names/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/nested/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/nested/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -27,9 +27,21 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
           <mapping namespace="urn:Nested" package="test.wsdl.nested"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/nested/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/nested/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/opStyles/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/opStyles/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -27,8 +27,20 @@
       <wsdl2java url="test/wsdl/opStyles/opStyles.wsdl"
                  output="build/work"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/opStyles/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/opStyles/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +11 -0     xml-axis/java/test/wsdl/parameterOrder/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/parameterOrder/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -28,6 +28,17 @@
                  serverSide="yes"
                  testcase="yes">
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/parameterOrder/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/parameterOrder/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/refattr/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/refattr/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -35,6 +35,18 @@
           <mapping namespace="urn:ref.types.test" package="test.wsdl.refattr"/>
           <mapping namespace="urn:ref.types" package="test.wsdl.refattr"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/refattr/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/refattr/*.java" />
  +    </javac>
  +
   </target>
   
   <target name="deploy" unless="batch">
  
  
  
  1.2       +14 -1     xml-axis/java/test/wsdl/roundtrip/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/roundtrip/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:25 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -104,7 +104,20 @@
           <mapping namespace="http://roundtrip.wsdl.test" package="test.wsdl.roundtrip"/>
       </wsdl2java>
   
  -
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/roundtrip/*.java" />
  +      <include name="test/wsdl/roundtrip/**/*.java" />
  +    </javac>
  +<!--
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/roundtrip/*.java" />
  +      <include name="test/wsdl/roundtrip/**/*.java" />
  +    </javac>
  +-->
   </target>
   
   <target name="deploy"/>
  
  
  
  1.3       +8 -2      xml-axis/java/test/wsdl/sequence/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/sequence/buildComponent.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- buildComponent.xml	30 Jul 2002 06:16:04 -0000	1.2
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.3
  @@ -27,13 +27,19 @@
       <wsdl2java url="test/wsdl/sequence/SequenceTest.wsdl"
                  output="build/work"
                  deployscope="session"
  -               serverSide="yes"
  -               skeletonDeploy="yes"
  +               serverSide="no"
                  noimports="no"
                  verbose="no"
                  testcase="no">
           <mapping namespace="urn:SequenceTest2" package="test.wsdl.sequence"/>
       </wsdl2java>
  +    <!-- Copy modified files to work directory -->
  +    <copy todir="${build.dir}/work/test/wsdl/sequence" overwrite="yes">
  +      <fileset dir="${test.dir}/wsdl/sequence">
  +        <include name="SequenceService.java"/>
  +        <include name="deploy.wsdd"/>
  +      </fileset>
  +    </copy>
       <!-- Compile Java -->
       <javac srcdir="${build.dir}/work" destdir="${build.dest}" debug="${debug}">
         <classpath refid="classpath" />
  
  
  
  1.2       +14 -0     xml-axis/java/test/wsdl/types/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/types/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:25 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -26,8 +26,22 @@
       <wsdl2java url="test/wsdl/types/ComprehensiveTypes.wsdl"
                  output="build/work"
                  serverSide="yes"
  +               skeletonDeploy="yes"
  +               helperGen="yes"
                  testcase="yes">
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/types/*.java" />
  +      <include name="test/wsdl/types/**/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/types/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>
  
  
  
  1.2       +12 -0     xml-axis/java/test/wsdl/wrapped/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/wrapped/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:25 -0000	1.1
  +++ buildComponent.xml	2 Aug 2002 18:43:38 -0000	1.2
  @@ -27,9 +27,21 @@
                  output="build/work"
                  deployscope="session"
                  serverSide="yes"
  +               skeletonDeploy="yes"
                  testcase="yes">
           <mapping namespace="urn:CityBBB" package="test.wsdl.wrapped"/>
       </wsdl2java>
  +
  +    <javac srcdir="${build.dir}/work" destdir="${build.dest}"
  +           debug="${debug}">
  +      <classpath refid="classpath" />
  +      <include name="test/wsdl/wrapped/*.java" />
  +    </javac>
  +
  +    <javac srcdir="." destdir="${build.dest}"
  +           debug="${debug}">
  +      <include name="test/wsdl/wrapped/*.java" />
  +    </javac>
   </target>
   
   <target name="deploy"/>