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 sa...@apache.org on 2005/03/21 14:01:47 UTC

cvs commit: ws-axis/c/build buildTest.xml

sanjaya     2005/03/21 05:01:46

  Modified:    c/build  buildTest.xml
  Log:
  added a commented java task for running wsdl2ws to be used when client stub generation fails for unclear reason
  
  Revision  Changes    Path
  1.7       +5 -1      ws-axis/c/build/buildTest.xml
  
  Index: buildTest.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/build/buildTest.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- buildTest.xml	17 Feb 2005 19:36:22 -0000	1.6
  +++ buildTest.xml	21 Mar 2005 13:01:46 -0000	1.7
  @@ -29,7 +29,9 @@
   			<fileset dir="${dir.axisJARs}" includes="*.jar"/>
   		</path>
   		<!-- Run WSDL2Ws -->
  -		<java jar="${dir.wsdl2ws}/wsdl2ws.jar" fork="true">
  +		<!-- use the following java task if client stub generation fails -->
  +		<!-- <java classname="org.apache.axis.wsdl.wsdl2ws.WSDL2Ws" fork="true"> -->
  +		 <java jar="${dir.wsdl2ws}/wsdl2ws.jar" fork="true">
   			<classpath refid="cp"/>
   			<arg value="${wsdl.test}"/>
   			<arg value="-o${test.directory}"/>
  @@ -49,6 +51,8 @@
   		<copy file="${client.code}" todir="${test.directory}"/>
   	</target>
   
  +	<!-- use the following when client stub generation fails -->
  +	<!-- <java classname="org.apache.axis.wsdl.wsdl2ws.WSDL2Ws" fork="true"> -->
   	<target name="copyDynamicClient" if="test.dynamicCode">
   		<copy todir="${test.directory}">
   			<fileset dir="${dir.autotests}/dynamic/${test.dynamicCodeDirectory}">