blob: fd6afc3291a739082bda8e5037e9ca9d1d06a928 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<deployment name="wsddScenario3"
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java/"
xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
xsi:schemaLocation="http://xml.apache.org/axis/wsdd/ D:\Schemas\WSDD\WSDD.xsd">
<documentation>
A simple serviceDeployment descriptor is used to describe the service.
The type is not needed either, as it reflects the default choice (simpleTargetedChain).
This defines a simple input chain of 2 handlers, a simple output chain of 2 handlers.
This shows use of parm to configure options on inputHandler2.
This shows the appearance of fault flow, and hence will generate a faultable handler
around the invocation of the simpleTargetedChain representing the service.
</documentation>
<service name="wsddScenario3-service1">
<requestFlow>
<documentation>
The input chain does not need to define type, as this is default
when more than one handler is specified within the flow
</documentation>
<handler name="inputHandler1" type="java:samples.handlers.testHandler1"/>
<handler name="inputHandler2" type="java:samples.handlers.testHandler1">
<parameter name="parm1">inputHandler2</parameter>
</handler>
</requestFlow>
<provider>
<java:provider className="samples.wsdd.wsddScenario3"/>
</provider>
<responseFlow>
<documentation src="urn:unused">
The even though no type is specified, the default chain type is taken
because more than one handler is specified
</documentation>
<handler name="outputHandler1" type="java:samples.handlers.testHandler2"/>
<handler name="outputHandler2" type="java:samples.handlers.testHandler2"/>
</responseFlow>
<faultFlow>
<documentation>The appearance of one or more fault flows will generate a faultableHandler
wrappered around the serviceHandler. Test handler 3 and 4 will be run if any faults
happen within the input chain, pivot or output chain.
</documentation>
<handler name="faultHandler1" type="java:samples.handlers.testHandler3"/>
<handler name="faultHandler2" type="java:samples.handlers.testHandler4"/>
</faultFlow>
</service>
</deployment>