WSDL2Java is a command line tool for generating server-side implementation skeletons in addition to client side proxies.
Steps :-
1. Download Axis
2. Run wsdl2java as below
http://ws.apache.org/axis/java/ant/axis-wsdl2java.html
Steps :-
1. Download Axis
2. Run wsdl2java as below
C:\axis2-1.5.1\bin\client> wsdl2java -uri http://somewsdl.wsdl -o client -p com.somepackage.ws.client -d xmlbeans
3.There will be a classes and a build.xml file.
4. Use ant to build the project and generated the jar file
5. Add the jar to the project and use for invoking the webservice
wsdl2java.sh or wsdl2java.bat - Generates java code according to a given WSDL file to handle Web service invocation.
These scripts can be found under the bin directory of the Axis2 distribution.
SYNOPSIS
wsdl2java.sh [OPTION]... -uri <Location of WSDL>
DESCRIPTION
Given a WSDL file, this generates java code to handle Web service invocations.
-o <output Location> : output file location
-a : Generate async style code only. Default is off
-s : Generate sync style code only. Default is off. takes precedence over -a
-p <package name> : set custom package name
-l <language> : valid languages are java and csharp. Default is java
-t : Generate TestCase to test the generated code
-ss : Generate server side code (i.e. skeletons). Default is off
-sd : Generate service descriptor (i.e. services.xml). Default is off. Valid with -ss
-d <databinding> : valid databinding(s) are adb, xmlbeans and jaxme. Default is adb
-g : Generates all the classes. valid only with the -ss (This will generate client and server codes)
-pn <port_name> : name of port in the presence of multiple ports
-sn <service_name> : name of service in the presence of multiple services
-u : unpacks the databinding classes
-r <repository_path> : path of the repository against which code is generated
-ns2p ns1=pkg1,ns2=pkg2 : Specify a custom package name for each namespace specified in the wsdl's schema
-ssi : Generate an interface for the service implementation (Default: off)
-em : Specify an external mapping file
-wv : WSDL Version. Valid Options : 2, 2.0, 1.1
-f : Generate the source output folder without the src directory
-uw : Switch on un-wrapping.
-S <folder name> : Generated source folder name. (Default: src)
-R <folder name> : Generated resources folder name. (Default: resources)
Environment Variables:
Set AXIS2_HOME: C:\axis2-1.5.1
Set JAVA_HOME: C:\Program Files\Java\jdk1.5.0_22
Reference:
http://ws.apache.org/axis/java/ant/axis-wsdl2java.html