<!-- 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 AuthenticationService WSDL service --> <service name="@ServiceName@" provider="java:RPC" style="rpc" use="literal"> <parameter name="wsdlTargetNamespace" value="http://ecoinformatics.org/authenticationservice-1.0.0"/> <parameter name="wsdlServiceElement" value="AuthenticationService"/> <parameter name="schemaQualified" value="http://ecoinformatics.org/authenticationservice-1.0.0"/> <parameter name="wsdlServicePort" value="Login"/> <parameter name="className" value="@ServiceImplementationClassName@"/> <parameter name="wsdlPortType" value="AuthenticationServicePortType"/> <parameter name="typeMappingVersion" value="1.2"/> <operation name="login" qname="operNS:login" xmlns:operNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnQName="retNS:AuthenticationServiceLoginResponseElement" xmlns:retNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnType="rtns:string" xmlns:rtns="http://www.w3.org/2001/XMLSchema" soapAction="http://ecoinformatics.org/authenticationservice-1.0.0#login" > <parameter qname="pns:AuthenticationServiceLoginRequestElement" xmlns:pns="http://ecoinformatics.org/authenticationservice-1.0.0" type="tns:AuthenticationServiceLoginRequestElementType" xmlns:tns="http://ecoinformatics.org/authenticationservice-1.0.0"/> </operation> <operation name="logout" qname="operNS:logout" xmlns:operNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnQName="retNS:AuthenticationServiceLogoutResponseElement" xmlns:retNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnType="rtns:string" xmlns:rtns="http://www.w3.org/2001/XMLSchema" soapAction="http://ecoinformatics.org/authenticationservice-1.0.0#logout" > <parameter qname="pns:AuthenticationServiceLogoutRequestElement" xmlns:pns="http://ecoinformatics.org/authenticationservice-1.0.0" type="tns:string" xmlns:tns="http://www.w3.org/2001/XMLSchema"/> </operation> <operation name="verifySession" qname="operNS:verifySession" xmlns:operNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnQName="retNS:AuthenticationServiceVerifySessionResponseElement" xmlns:retNS="http://ecoinformatics.org/authenticationservice-1.0.0" returnType="rtns:string" xmlns:rtns="http://www.w3.org/2001/XMLSchema" soapAction="http://ecoinformatics.org/authenticationservice-1.0.0#verifySession" > <parameter qname="pns:AuthenticationServiceVerifySessionRequestElement" xmlns:pns="http://ecoinformatics.org/authenticationservice-1.0.0" type="tns:string" xmlns:tns="http://www.w3.org/2001/XMLSchema"/> </operation> <parameter name="allowedMethods" value="login logout verifySession"/> <typeMapping xmlns:ns="http://ecoinformatics.org/authenticationservice-1.0.0" qname="ns:AuthenticationServiceLoginRequestElementType" type="java:org.ecoinformatics.ecogrid.auth.stub.AuthenticationServiceLoginRequestElementType" serializer="org.apache.axis.encoding.ser.BeanSerializerFactory" deserializer="org.apache.axis.encoding.ser.BeanDeserializerFactory" encodingStyle="" /> </service> </deployment>