Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where I can find Axis WSDL2Java file?

Tags:

java

axis

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 ?

like image 538
newbie Avatar asked Nov 02 '09 12:11

newbie


People also ask

Where can I find Axis2 XML?

The document is all about the proper way of specifying the configurations in axis2. xml, which is located at AXIS2_HOME/conf.

What is wsdl2java?

Description. wsdl2java takes a WSDL document and generates fully annotated Java code from which to implement a service. The WSDL document must have a valid portType element, but it does not need to contain a binding element or a service element. Using the optional arguments you can customize the generated code.

What is WSDD file in Web services?

The wsdd stands for Web service description file. It is an XML file used by the Axis engine. It contains definitions of the Web services that Axis deploys from your Web application.

What is the difference between Axis and Axis2?

Axis 1 disorders consist of psychological diagnoses excepting condition of mental retardation (MR) and various personality disorders. Axis 2 disorders encompass personality disorders like avoidant personality, narcissistic personality, etc and true mental retardation.


1 Answers

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 $@
like image 177
johnthuss Avatar answered Sep 23 '22 01:09

johnthuss