Where I can find Axis WSDL2Java file?

newbie picture newbie · Nov 2, 2009 · Viewed 39k times · Source

I downloaded Axis 1.4 ( http://www.nic.funet.fi/pub/mirrors/apache.org/ws/axis/1_4/ ) and I wanted to use WSDL2Java, but I didn't find such a file from package, but there are refrences to this file ( http://ws.apache.org/axis/java/user-guide.html#WSDL2JavaBuildingStubsSkeletonsAndDataTypesFromWSDL ) in their site. Where I can get that file ?

Answer

johnthuss picture johnthuss · Mar 16, 2011

Here is a simple bash script to invoke WSDL2Java that you can place in the "lib" directory and run:

#! /bin/bash

CP="."
for JAR in `ls *.jar`; do
        CP="$CP:$JAR"
done
#echo "classpath = $CP"
java -cp $CP org.apache.axis.wsdl.WSDL2Java $@