You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by arvi <sa...@gmail.com> on 2010/04/26 08:19:03 UTC

Ant error while running wsdl2java in loop

I am trying to run axis2's wsdl2java tool in a loop from a ant build file.

Attached below is the snippet of the build xml to do this

 <target name="wsdl2java">
    <basename property="wsdl" file="${file}" />
        <echo message="Running wsdl to java for service:   ${wsdl}"/>
        <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="yes"
classpathref="classpath" failonerror="true">
            <arg value="-p"/>
            <arg value="${stub-package}"/>
            <arg value="-d"/>
            <arg value="jibx"/>
            <arg value="-Ebindingfile"/>
            <arg value="${jibx-location}\binding.xml"/>
            <arg value="-o"/>
            <arg value="${src-location}"/>
            <arg value="-uri"/>
            <arg value="${wsdl-location}\${wsdl}"/>
            <arg value="-s"/>
        </java>
    	 <copy toDir="${src-location}\src" failonerror="false"
includeEmptyDirs="yes" verbose="true" >
            <fileset dir="${jibx-location}">
            	<include name="**/*" />                
            </fileset>
        </copy>    	
    	<delete quiet="true" file="${src-location}\build.xml"/>
    </target>
	
	 <target name="createstubs" depends="jibxgen">
	  <echo message="Invoking wsdl2java in a loop"/>
 	<foreach target="wsdl2java" param="file" inheritall="true">
 	    <path>
 	        <fileset dir="${wsdl-location}" />
 	    </path>
 	</foreach>
 	</target>

------------------------------------------------

When i run the taget "createstubs", i get the following error

createstubs:
     [echo] Invoking wsdl2java in a loop

BUILD FAILED
E:\jibx\23 Apr 2010\build\build.xml:95: Problem: failed to create task or
type foreach
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.


Can you please help me resolve this?

Thanks
-- 
View this message in context: http://old.nabble.com/Ant-error-while-running-wsdl2java-in-loop-tp28361221p28361221.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


AW: Ant error while running wsdl2java in loop

Posted by Ja...@rzf.fin-nrw.de.
Include the AntContrib jar in your -lib path and <taskdef> it.

Jan 

>-----Ursprüngliche Nachricht-----
>Von: arvi [mailto:sarvind6@gmail.com] 
>Gesendet: Montag, 26. April 2010 08:19
>An: user@ant.apache.org
>Betreff: Ant error while running wsdl2java in loop
>
>
>I am trying to run axis2's wsdl2java tool in a loop from a ant 
>build file.
>
>Attached below is the snippet of the build xml to do this
>
> <target name="wsdl2java">
>    <basename property="wsdl" file="${file}" />
>        <echo message="Running wsdl to java for service:   ${wsdl}"/>
>        <java classname="org.apache.axis2.wsdl.WSDL2Java" fork="yes"
>classpathref="classpath" failonerror="true">
>            <arg value="-p"/>
>            <arg value="${stub-package}"/>
>            <arg value="-d"/>
>            <arg value="jibx"/>
>            <arg value="-Ebindingfile"/>
>            <arg value="${jibx-location}\binding.xml"/>
>            <arg value="-o"/>
>            <arg value="${src-location}"/>
>            <arg value="-uri"/>
>            <arg value="${wsdl-location}\${wsdl}"/>
>            <arg value="-s"/>
>        </java>
>    	 <copy toDir="${src-location}\src" failonerror="false"
>includeEmptyDirs="yes" verbose="true" >
>            <fileset dir="${jibx-location}">
>            	<include name="**/*" />                
>            </fileset>
>        </copy>    	
>    	<delete quiet="true" file="${src-location}\build.xml"/>
>    </target>
>	
>	 <target name="createstubs" depends="jibxgen">
>	  <echo message="Invoking wsdl2java in a loop"/>
> 	<foreach target="wsdl2java" param="file" inheritall="true">
> 	    <path>
> 	        <fileset dir="${wsdl-location}" />
> 	    </path>
> 	</foreach>
> 	</target>
>
>------------------------------------------------
>
>When i run the taget "createstubs", i get the following error
>
>createstubs:
>     [echo] Invoking wsdl2java in a loop
>
>BUILD FAILED
>E:\jibx\23 Apr 2010\build\build.xml:95: Problem: failed to 
>create task or
>type foreach
>Cause: The name is undefined.
>Action: Check the spelling.
>Action: Check that any custom tasks/types have been declared.
>Action: Check that any <presetdef>/<macrodef> declarations 
>have taken place.
>
>
>Can you please help me resolve this?
>
>Thanks
>-- 
>View this message in context: 
>http://old.nabble.com/Ant-error-while-running-wsdl2java-in-loop
>-tp28361221p28361221.html
>Sent from the Ant - Users mailing list archive at Nabble.com.
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
>For additional commands, e-mail: user-help@ant.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org