<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="PurchaseService"
provider="java:RPC"
style="document"
use="literal">
<parameter name="className" value="com.osmoticweb.axisdemo.PurchaseService"/>
<parameter name="allowedMethods" value="order, cancel"/>
<namespace>http://osmoticweb.com/Purchase</namespace>
</service>
</deployment> |
In the following deployment descriptor a service with the name spprovider is undeployed.
<undeployment xmlns="http://xml.apache.org/axis/wsdd/">
<service name="spprovider"/>
</undeployment> |
| Name | Mandatory | Default | Description | Examples |
|---|---|---|---|---|
| name | yes | - | Name of the service. | PurchaseService |
| provider | yes | - | Name of the provider used for this service. The name must be in the xmlns:java="http://xml.apache.org/axis/wsdd/providers/java" namespace | java:RPC, java:EJB, java:RMI, java:MSG, ... |
| style | no | rpc | Determines the structure of the soap body. | rpc, document, wrapped, message |
| use | no | encoded | Message encoding | encoded, literal |
| attachment | no | MIME | Format for attachments | NONE, MIME, DIME |
| Name | Cardinality | Description |
|---|---|---|
| beanMapping | 0...* | Local typemapping with the scope of this service. The typemapping is not visible to other services. The element beanMapping is a simplified form of a typeMapping. |
| typeMapping | 0...* | Local typemapping with the scope of this service. The typemapping is not visible to other services. |
| endpointURL | 0...1 | Endpoint URL for the service in generated WSDL |
| namespace | 0...* | Namespace for the target namespace in generated WSDL |
| operation | 0...* | Metadata describing an operation with faults, parameter names and modes. |
| requestFlow | 0...* | The handlers of this chain are invoked before the service handler |
| responseFlow | 0...* | The handlers of this chain are invoked after the service handler |
| handlerInfoChain | 0...1 | JAX-RPC handler |
| documentation | 0...1 | Description of the service. Since Axis 1.2 the documentation is included in generated WSDL. |
| wsdlFile | 0...1 | Location of a WSDL document that is returned instead of generated WSDL |
Provided by Orientation in Objects