I am using ant 1.6.1 in eclipse 3.0

 

Here is the task I am running

 

I have tried this with axis 1.1 and 1.2alpha

It seems that no matter what I try, I cannot get the method names to be supplied. 

I am not sure if it is no storing the debug info properly when compiling or if the java2wsdl task isn’t reading it properly.

 

Any help would be greatly appreciated.

 

Thanks in advance,

Curt Stanton

 

   <target name="compile" depends="init" description="compile the source ">

      <!-- Compile the java code from ${src} into ${build} -->

      <javac srcdir="${src}" destdir="${build}" target="1.4" debug="true" />

   </target>

 

   <target name="all" depends="compile" description="generate the wsdl">

      <!-- Create the distribution directory -->

      <mkdir dir="${dist}" />

      <path id="axis.classpath">

         <fileset dir="${axis.home}/lib">

            <include name="**/*.jar" />

         </fileset>

      </path>

 

      <taskdef resource="axis-tasks.properties" classpathref="axis.classpath" />

 

      <axis-java2wsdl classname="${package}.${classname}"

                      location="${location}"

                      namespace="${namespace}"

                      output="${dist}/${outputfile}"

                      style="wrapped"

                               use="literal">

         <mapping namespace="${namespace}" package="${package}" />

         <classpath>

            <pathelement path="${build}" />

         </classpath>

      </axis-java2wsdl>

   </target>

Reply via email to