Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added a "required" column to the CXF properties--Willem (or someone else) please check if correct.

...

Options

Name

Description

Example

Required?

default value

wsdlURL

The location of the WSDL.

file://local/wsdl/hello.wsdl or wsdl/hello.wsdl

No

WSDL is obtained from endpoint address by default  

serviceClass

The name of the SEI(Service Endpoint Interface) implementation class. This class can have but does not require JSR181 annotations.

org.apache.camel.Hello

Yes (needed to determine which CXF frontend--simple or jaxws--being used)

 

serviceName

The service name this service is implementing, it maps to the wsdl:service@name.

{

http://org.apache.camel

}
ServiceName

Only if more than one serviceName in WSDL present

 

portName

The port name this service is implementing, it maps to the wsdl:port@name.

{

http://org.apache.camel

}
PortName

Only if more than one portName under the serviceName is present

 

dataFormat

Which data type messages the CXF endpoint supports

POJO, PAYLOAD, MESSAGE

No

POJO

The descriptions of the dataformats

...