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-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to