Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Synopsis

No Format
wsdl2java [[-?]|[-help]|[-h]] [-fe <frontend name>]* [-db <data binding name>]* [-wv <wsdl<[wsdl version>version]>* 
[-p [<[wsdl- namespace =]Package PackageName ] ...]
[Name>* -sn <service-name> -b <binding-name>]* [
-catalog <catalog-file-name>] [-d <output-directory>] [-compile] 
[-classdir <compile-classclasses-dir>]directory> [-client]impl [-server] [-impl]client [-all] [ 
-autoNameResolution -defaultValues<=class name for DefaultValueProvider> -ant] [
-nexclude <schema [schema-namespace [= java- packagename]] ...]
[-exsh (true/false)] [-dns(true/false)] [-dex (true/false)] [-validate] [-v] [[-verbose]|[-quiet]] {wsdlfile}>*  -exsh <(true, false)>
-dns <(true, false)> -dex <(true, false)> -validate -keep 
-wsdlLocation <wsdlLocation attribute> -xjc<xjc arguments> -noAddressBinding -h 
-v -verbose -quiet <wsdlurl>

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. In addition, wsdl2java can generate an Ant based makefile to build your application.

...

Option

Interpretation

-?

Displays the online help for this utility.

-help

Displays the online help for this utility.

-h

Displays the online help for this utility.

-fe frontend-name

Specifies the frontend. Default is JAXWS. Currently supports only JAXWS frontend.

-db databinding-name

Specifies the databinding. Default is JAXB. Currently supports only JAXB databinding.

-wv wsdl-version

Specifies the wsdl version .Default is WSDL1.1. Currently suppports only WSDL1.1 version.

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="933c68c9e253bd9c-87b8883b-48fb4bb2-b848b1ff-3c1620ca39e8ec793e0bf6de"><ac:plain-text-body><![CDATA[

-p [ wsdl-namespace= ] PackageName

Specifies zero, or more, package names to use for the generated code. Optionally specifies the WSDL namespace to package name mapping.

]]></ac:plain-text-body></ac:structured-macro>

-sn service-name

The WSDL service name to use for the generated code.

-b binding-name

Specifies zero, or more, JAXWS or JAXB binding files. Use spaces to separate multiple entries.

-catalog catalog-file-name

Specify catalog file to map the imported wsdl/schema

-d output-directory

Specifies the directory into which the generated code files are written.

-compile

Compiles generated Java files.

-classdir complile-class-dir

Specifies the directory into which the compiled class files are written.

-client

Generates starting point code for a client mainline.

-server

Generates starting point code for a server mainline.

-impl

Generates starting point code for an implementation object.

-all

Generates all starting point code: types, service proxy, service interface, server mainline, client mainline, implementation object, and an Ant build.xml file.

-ant

Generates the Ant build.xml file.

-autoNameResolution

Automatically resolve naming conflicts without requiring the use of binding customizations.

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="c6626f36b20ed94f-29a57ba5-49be4929-86fb9e5e-3b596b7b8fe8aa13fa801c83"><ac:plain-text-body><![CDATA[

-nexclude schema-namespace [=java-packagename]defaultValues=[DefaultValueProvider impl]

Specifies that default values are generated for the impl and client. You can also provide a custom default value provider. The default provider is RandomValueProvider Ignore the specified WSDL schema namespace when generating code. This option may be specified multiple times. Also, optionally specifies the Java package name used by types described in the excluded namespace(s).

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="d3a3b97c-3170-4484-b990-bb64bdb9da49"><ac:plain-text-body><![CDATA[

-nexclude schema-namespace [=java-packagename]

Ignore the specified WSDL schema namespace when generating code. This option may be specified multiple times. Also, optionally specifies the Java package name used by types described in the excluded namespace(s).

]]></ac:plain-text-body></ac:structured-macro>

-exsh (true/false)

Enables or disables processing of implicit SOAP headers (i.e. SOAP headers defined in the wsdl:binding but not wsdl:

-exsh (true/false)

Enables or disables processing of implicit SOAP headers (i.e. SOAP headers defined in the wsdl:binding but not wsdl:portType section.) Default is false.

-dns (true/false)

Enables or disables the loading of the default namespace package name mapping. Default is true and http://www.w3.org/2005/08/addressing=org.apache.cxf.ws.addressing namespace package mapping will be enabled.

-dex (true/false)

Enables or disables the loading of the default excludes namespace mapping. Default is true. disables the loading of the default excludes namespace mapping. Default is true.

-validate

Enables validating the WSDL before generating the code.

-keep

Specifies that the code generator will not overwrite any preexisting files. You will be responsible for resolving any resulting compilation issues.

-wsdlLocation wsdlLocation

Specifies the value of the @WebServiceClient annotation's wsdlLocation property.

-xjc<xjc args>

Specifies a comma separated list of arguments that are passed directly to the XJC processor when using the JAXB databinding. A list of available XJC plugins can be obtained using -xjc-X

-validate

Enables validating the WSDL before generating the code.

-v

Displays the version number for the tool.

-verbose

Displays comments during the code generation process.

-quiet

Suppresses comments during the code generation process.

wsdlfile

The path and name of the WSDL file to use in generating the code.

...