An Axis engine can be configured in the globalConfiguration with parameter subelements containing pairs of name and value.
<globalConfiguration>
<parameter name="sendMultiRefs" value="true"/>
<parameter name="sendXsiTypes" value="true"/>
</globalConfiguration> |
Handlers can be plugged into the global request and response chain. The following code shows a global configuration with a chain and a handler in the global request flow.
<globalConfiguration>
<requestFlow>
<chain type="chain-1"/>
<handler type="java:com.osmoticweb.axisdemo.VerifySignatureHandler"/>
</requestFlow>
</globalConfiguration> |
| Name | Cardinality | Description |
|---|---|---|
| parameter | 0...* | Name/value pair used for configuration |
| requestFlow | 0...1 | Global request flow chain. Every request is passed to the handlers in this chain. |
| responseFlow | 0...1 | Global response flow chain. Every request is passed to the handlers in this chain. |
Provided by Orientation in Objects