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 to...@apache.org on 2006/04/07 20:59:14 UTC

svn commit: r392364 - /webservices/axis/trunk/java/test/wsdl/interop/build.xml

Author: tomj
Date: Fri Apr  7 11:59:12 2006
New Revision: 392364

URL: http://svn.apache.org/viewcvs?rev=392364&view=rev
Log:
Move the SalesRankNPrice WSDL out of the active list as perfectXML.net is gone.

I am not sure what this build file is trying to accomplish, but it builds 3 of the
sample applications and then copies the whole samples class tree to compile, which
choked on the xbeans sample.

Chage to only copy the samples that this file builds.

Modified:
    webservices/axis/trunk/java/test/wsdl/interop/build.xml

Modified: webservices/axis/trunk/java/test/wsdl/interop/build.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/test/wsdl/interop/build.xml?rev=392364&r1=392363&r2=392364&view=diff
==============================================================================
--- webservices/axis/trunk/java/test/wsdl/interop/build.xml (original)
+++ webservices/axis/trunk/java/test/wsdl/interop/build.xml Fri Apr  7 11:59:12 2006
@@ -452,18 +452,6 @@
                verbose="no"
                noimports="no">
     </wsdl2java>
-    <!-- This tests .NET document/literal WSDL.
-         We get this WSDL file from the internet on purpose,
-         file is only for reference.
-    <wsdl2java url="${axis.home}/test/wsdl/literal/SalesRankNPrice.wsdl"
-     -->
-    <wsdl2java url="http://www.perfectxml.net/WebServices/SalesRankNPrice/BookService.asmx?WSDL"
-               output="${axis.home}/build/work"
-               verbose="no"
-               serverSide="no"
-               testcase="no">
-        <mapping namespace="http://www.PerfectXML.com/NETWebSvcs/BookService" package="test.wsdl.literal"/>
-    </wsdl2java>
 
     <!-- jaxrpc sample -->
     <wsdl2java url="${axis.home}/samples/jaxrpc/hello/HelloWorld.wsdl"
@@ -544,6 +532,18 @@
                verbose="yes"
                noimports="no">
     </wsdl2java>
+    
+    //     This tests .NET document/literal WSDL.
+    //     NOTE: PerfectXML.net is not longer up (tomj 4/7/06)
+    //     See test/wsdl/literal for local version
+    <wsdl2java url="http://www.perfectxml.net/WebServices/SalesRankNPrice/BookService.asmx?WSDL"
+               output="${axis.home}/build/work"
+               verbose="no"
+               serverSide="no"
+               testcase="no">
+        <mapping namespace="http://www.PerfectXML.com/NETWebSvcs/BookService" package="test.wsdl.literal"/>
+    </wsdl2java>
+
     -->
 
     <copy todir="${build.dir}/work/test/wsdl/interop" overwrite="yes">
@@ -555,9 +555,12 @@
 
     <copy todir="${build.dir}/work/samples" overwrite="yes">
       <fileset dir="${samples.dir}">
-        <include name="**/*BindingImpl.java"/>
-        <include name="**/*TestCase.java"/>
-        <exclude name="ws-i/scm/**/*.java" />
+        <include name="addr/*BindingImpl.java"/>
+        <include name="echo/*BindingImpl.java"/>
+        <include name="jaxrpc/*BindingImpl.java"/>
+        <include name="addr/*TestCase.java"/>
+        <include name="echo/*TestCase.java"/>
+        <include name="jaxrpc/*TestCase.java"/>
 	  </fileset>
     </copy>
 
@@ -571,7 +574,9 @@
       <include name="net/**/*.java" />
       <include name="org/**/*.java" />
       <include name="interop/**/*.java" />
-      <include name="samples/**/*.java" />
+      <include name="samples/addr/*.java" />
+      <include name="samples/echo/*.java" />
+      <include name="samples/jaxrpc/*.java" />
       <include name="test/**/*.java" />
       <exclude name="test/wsdl/interop3/**/*.java" />
       <exclude name="test/wsdl/interop3/**/*.java" />