Axis2 Reference Guide

WSDL2Java Reference

NAME
       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)
	
EXAMPLES
       wsdl2java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl
       wsdl2java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd 
       wsdl2java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide

Java2WSDL Reference

NAME
       Java2WSDL.sh or Java2WSDL.bat - Generates the appropriate WSDL file for a given java class.
       These scripts can be found under the bin directory of the Axis2 distribution.

SYNOPSIS
       Java2WSDL.sh [OPTION]... -cn <fully qualified class name>

DESCRIPTION
       Given a java class generates a WSDL file for the given java class. 

       -o <output Location> : output file location
       -cp <class path uri> : list of classpath entries - (urls)
       -tn <target namespace> : target namespace
       -tp <target namespace prefix> : target namespace prefix
       -stn <schema target namespace> : target namespace for schema
       -stp <schema target namespace prefix> : target namespace prefix for schema
       -sn <service name> : service name
       -of <output file name> : output file name for the WSDL
       -st <binding style> : style for the WSDL
       -u <binding use> : use for the WSDL
       -l <soap address> : address of the port for the WSDL
       -efd <qualified/unqualified> : Setting for elementFormDefault (defaults to qualified)
       -afd <qualified/unqualified> : Setting for attributeFormDefault (defaults to qualified)
       -xc <extra class> : Extra class for which schematype must be generated.  Use as : -xc class1 -xc class2 ...
EXAMPLES
       Java2WSDL.sh -cn ../samples/test/searchTool.Search
       Java2WSDL.sh -cn ../samples/test/searchTool.Search -sn search
       Java2WSDL.sh -cn ../samples/test/searchTool.Search -u -sn search
       Java2WSDL.sh -cn ../samples/test/searchTool.Search -sn search -o ../samples/test/wsdl