1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
<!-- Use this file to deploy some handlers/chains and services -->
<!-- Two ways to do this: -->
<!-- java org.apache.axis.client.AdminClient deploy.wsdd -->
<!-- after the axis server is running -->
<!-- or -->
<!-- java org.apache.axis.utils.Admin client|server deploy.wsdd -->
<!-- from the same directory that the Axis engine runs -->
<deployment
xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<!-- Services from ChoiceService WSDL service -->
<service name="ChoiceServiceSoap" provider="java:RPC" style="document" use="literal">
<parameter name="wsdlTargetNamespace" value="http://tempuri.org/"/>
<parameter name="wsdlServiceElement" value="ChoiceService"/>
<parameter name="wsdlServicePort" value="ChoiceServiceSoap"/>
<parameter name="className" value="test.wsdl.choice.ChoiceServiceSoapImpl"/>
<parameter name="wsdlPortType" value="ChoiceServiceSoap"/>
<operation name="get" qname="get" returnQName="retNS:Record2" xmlns:retNS="http://tempuri.org/" returnType="rtns:>Record2" xmlns:rtns="http://tempuri.org/" soapAction="http://tempuri.org/get" >
<parameter qname="pns:Record1" xmlns:pns="http://tempuri.org/" type="tns:>Record1" xmlns:tns="http://tempuri.org/"/>
</operation>
<parameter name="allowedMethods" value="get"/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:BaseFaultType"
type="java:test.wsdl.choice.BaseFaultType"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:>Record1"
type="java:test.wsdl.choice.Record1"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:StagingFaultType"
type="java:test.wsdl.choice.StagingFaultType"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:>Record2"
type="java:test.wsdl.choice.Record2"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:FaultType"
type="java:test.wsdl.choice.FaultType"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:FaultPropertyType"
type="java:test.wsdl.choice.FaultPropertyType"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
<typeMapping
xmlns:ns="http://tempuri.org/"
qname="ns:>SetResourceProperties"
type="java:test.wsdl.choice.SetResourceProperties"
serializer="org.apache.axis.encoding.ser.BeanSerializerFactory"
deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory"
encodingStyle=""
/>
</service>
</deployment>
|