rubys       02/02/28 12:52:22

  Modified:    java/test/wsdl/interop3/compound1 build.xml
               java/test/wsdl/interop3/compound2 build.xml
               java/test/wsdl/interop3/docLit build.xml
               java/test/wsdl/interop3/docLitParam build.xml
               java/test/wsdl/interop3/import1 build.xml
               java/test/wsdl/interop3/import2 build.xml
               java/test/wsdl/interop3/import3 build.xml
               java/test/wsdl/interop3/rpcEnc build.xml
  Log:
  Enable the interop test to build again
  
  Revision  Changes    Path
  1.6       +5 -5      xml-axis/java/test/wsdl/interop3/compound1/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound1/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 28 Feb 2002 18:51:03 -0000      1.5
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.6
  @@ -15,23 +15,23 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="compound1"/>
  +    <property name="testname" value="compound1"/>
   
       <!-- generate skeletons -->
  -    <wsdl2java url="http://www.whitemesa.net/wsdl/r3/compound1.wsdl";
  +    <wsdl2java url="http://www.whitemesa.net/wsdl/r3/${testname}.wsdl";
                  output="${root.dir}/build/work" skeleton="yes"/>
   
       <copy file="SoapInteropCompound1BindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <copy file="Compound1TestCase.java"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.8       +5 -5      xml-axis/java/test/wsdl/interop3/compound2/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/compound2/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.7
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.8
  @@ -15,23 +15,23 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="compound2"/>
  +    <property name="testname" value="compound2"/>
   
       <!-- generate skeletons -->
  -    <wsdl2java url="http://www.whitemesa.net/wsdl/r3/compound2.wsdl";
  +    <wsdl2java url="http://www.whitemesa.net/wsdl/r3/${testname}.wsdl";
                  output="${root.dir}/build/work" skeleton="yes"/>
   
       <copy file="SoapInteropCompound2BindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <copy file="Compound2TestCase.java"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/compound2"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +3 -3      xml-axis/java/test/wsdl/interop3/docLit/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLit/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,7 +15,7 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="docLit"/>
  +    <property name="testname" value="docLit"/>
   
       <!-- generate skeletons -->
       <wsdl2java url="http://www.whitemesa.com/r3/InteropTestDocLit.wsdl";
  @@ -24,13 +24,13 @@
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="WSDLInteropTestDocLitPortBindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +3 -3      xml-axis/java/test/wsdl/interop3/docLitParam/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/docLitParam/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,7 +15,7 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="docLitParam"/>
  +    <property name="testname" value="docLitParam"/>
   
       <!-- generate skeletons -->
       <wsdl2java url="http://www.whitemesa.com/r3/InteropTestDocLitParameters.wsdl";
  @@ -24,13 +24,13 @@
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="WSDLInteropTestDocLitPortBindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +5 -5      xml-axis/java/test/wsdl/interop3/import1/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import1/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 20:05:49 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,25 +15,25 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="import1"/>
  +    <property name="testname" value="import1"/>
   
       <!-- generate skeletons -->
  -    <wsdl2java url="http://www.whitemesa.com/r3/import1.wsdl";
  +    <wsdl2java url="http://www.whitemesa.com/r3/${testname}.wsdl";
                  output="${root.dir}/build/work" skeleton="yes"/>
   
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="SoapInteropImport1BindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <copy file="Import1TestCase.java"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +5 -5      xml-axis/java/test/wsdl/interop3/import2/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import2/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,25 +15,25 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="import2"/>
  +    <property name="testname" value="import2"/>
   
       <!-- generate skeletons -->
  -    <wsdl2java url="http://www.whitemesa.com/r3/import2.wsdl";
  +    <wsdl2java url="http://www.whitemesa.com/r3/${testname}.wsdl";
                  output="${root.dir}/build/work" skeleton="yes"/>
   
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="SoapInteropImport2BindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <copy file="Import2TestCase.java"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +5 -5      xml-axis/java/test/wsdl/interop3/import3/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/import3/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,25 +15,25 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="import3"/>
  +    <property name="testname" value="import3"/>
   
       <!-- generate skeletons -->
  -    <wsdl2java url="http://www.whitemesa.com/r3/import3.wsdl";
  +    <wsdl2java url="http://www.whitemesa.com/r3/${testname}.wsdl";
                  output="${root.dir}/build/work" skeleton="yes"/>
   
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="SoapInteropImport3BindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <copy file="Import3TestCase.java"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  
  1.7       +3 -3      xml-axis/java/test/wsdl/interop3/rpcEnc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop3/rpcEnc/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 28 Feb 2002 18:51:04 -0000      1.6
  +++ build.xml 28 Feb 2002 20:52:22 -0000      1.7
  @@ -15,7 +15,7 @@
     </taskdef>
   
     <target name="main">
  -    <property name="test.dir" value="rpcEnc"/>
  +    <property name="testname" value="rpcEnc"/>
   
       <!-- generate skeletons -->
       <wsdl2java url="http://www.whitemesa.com/r3/InteropTestRpcEnc.wsdl";
  @@ -24,13 +24,13 @@
       <mkdir dir="${root.dir}/${build.dest}"/>
   
       <copy file="WSDLInteropTestRpcEncPortBindingImpl.java" overwrite="true"
  -          todir="${root.dir}/build/work/test/wsdl/interop3/${test.dir}"/>
  +          todir="${root.dir}/build/work/test/wsdl/interop3/${testname}"/>
   
       <!-- compile the skeletons -->
       <javac srcdir="${root.dir}/${build.dir}/work" 
         destdir="${root.dir}/${build.dest}" debug="on">
         <classpath refid="test-classpath" />
  -      <include name="test/wsdl/interop3/${test.dir}/*.java" />
  +      <include name="test/wsdl/interop3/${testname}/*.java" />
       </javac>
     </target>
   
  
  
  


Reply via email to