Versions Compared

Key

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

...

No Format
jaxws/wsdl2java -fe <front-end-name>* -db <data-binding-name>* -wv <wsdl-version> -p <[wsdl-namespace = ]package-name>* -sn 
<service-name> -b <bindling-file-name> -catalog <catalog-file-name> -d <output-directory> -compile -classdir <compile-classes-directory> -impl -server -client 
-all -autoNameResolution -defaultValues<=class-name-for-DefaultValueProvider> -ant -nexclude <schema-namespace [=java=package-
name]>* -exsh <<true,false>> -dns <Default value is true> <<true,false>> -dex <<true,false>> -validate -keep -wsdllocation <wsdlLocation> -xjc 
<xjc-arguments> -noAddressBinding -h -v -verbose -quiet <wsdlurl>

The arguments used to manage the code generation process are reviewed in the following table.

Option

Usage

Description

-help or -h

-help or -h

Displays the online help for this utility.

-fe

-fe <frontend-name>

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

-db

-db <databinding-name>

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

-wv

-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="94812cbf-d88a-4f41-9b2f-bd1ad7af9b2e"><ac:plain-text-body><![CDATA[

-p

-p <[wsdl-namespace = ] package-name>*

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

-sn <service-name>

The WSDL service name to use for the generated code.

-b

-b <bindling-file-name>

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

-catalog

-catalog <catalog-file-name>

Specify catalog file to map the imported wsdl/schema.

-d

-d <output-directory>

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

-compile

-compile

Compiles generated Java files.

-classdir

-classdir <compile-classes-directory>

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

-impl

-impl

Generates starting point code for an implementation object.

-client

-client

Generates starting point code for a client mainline.

-server

-server

Generates starting point code for a server mainline.

-all

-all

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

-autoNameResolution

-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="a388e1c4-44cf-4569-ac05-161a46fe8f88"><ac:plain-text-body><![CDATA[

-defaultValues

-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.

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

-ant

-ant

Generates the Ant build.xml file.

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="d7e6386a-35c9-447b-9bde-c5708217f595"><ac:plain-text-body><![CDATA[

-nexclude

-nexclude <schema-namespace [=java=package-name]>*

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

-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

-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.addressingImage Added

namespace package mapping will be enabled.

-dex

-dex <<true,false>>

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

-validate

-validate

Enables validating the WSDL before generating the code.

-keep

-keep

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

-wsdlLocation

-wsdllocation <wsdlLocation>

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

-xjc

-xjc <xjc-arguments>

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.

-noAddressBinding

-noAddressBinding

For compatibility with CXF 2.0, this flag directs the code generator to generate the older CXF proprietary WS-Addressing types instead of the JAX-WS 2.1 compliant WS-Addressing types.

-v

-v

Displays the version number for the tool.

-verbose

-verbose

Displays comments during the code generation process.

-queit

-quiet

Suppresses comments during the code generation process.

<wsdlurl>

<wsdlurl>

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

The jaxws/wsimport command can be used to create java classes from WSDL, and uses this syntax:

...