...
Property Name | Data Type | Example | Description |
---|---|---|---|
org.apache.cxf.ws.address | String | http://localhost:9090/greeter | The address at which the service with be made available remotely. If this property is not specified, this defaults to http://localhost:9000/fully/qualified/ClassName. |
org.apache.cxf.ws.httpservice.context | String |
| When this property is specified, the OSGi HTTP Service is used to expose the service, rather than a dedicated Jetty HTTP Server. This property doesn't allow the specification of a port number, as this is provided by the HTTP Service. The Distributed OSGi distributions come with Pax-Web, for which configuration information can be found at http://wiki.ops4j.org/display/paxweb/Configuration, however other OSGi HTTP Service implementations are potentially configured differently. |
org.apache.cxf.ws.frontend | String |
| The CXF frontend which will be used to create endpoints. Defaults to 'simple' which is an Aegis-based simple frontend. Note that for JAXWS to work a javax.jws.* has to be imported into the interface and/or implementation and client bundles for annotations like @WebService and @WebMethod be recognized |
org.apache.cxf.ws.databinding | String |
| Supported values are 'aegis and 'jaxb', defaults to 'aegis'. Note that for JAXB to work JAXB packages like javax.xml.bind.annotation.* have to be imported |
org.apache.cxf.ws.databinding.bean | DataBinding | An actual DataBinding instance to use. If not specified, a default one is created according to the type specified in the org.apache.cxf.ws.databinding property. | |
org.apache.cxf.ws.wsdl.location | String |
| WSDL location |
org.apache.cxf.ws.wsdl.service.ns | String | http://services.org | WSDL service namespace |
org.apache.cxf.ws.wsdl.service.name | String |
| WSDL service name |
org.apache.cxf.ws.wsdl.port.name | String |
| WSDL port name |
org.apache.cxf.ws.in.interceptors | String, String[], List |
| List of CXF in interceptors |
org.apache.cxf.ws.out.interceptors | String, String[], List |
| List of CXF out interceptors |
org.apache.cxf.ws.in.fault.interceptors | String, String[], List |
| List of CXF in fault interceptors |
org.apache.cxf.ws.out.fault.interceptors | String, String[], List |
| List of CXF out fault interceptors |
org.apache.cxf.ws.features | String, String[], List, Object |
| List of CXF out features |
...