<!-- 
	The root tag contains the attributes name and scope.
	 * the name attribute configures the service name, FlexService will do fine for this service
	 * the scope attribute tells axis to keep one instance of the endpoint, this way the HashMap 
	   will be maintained during multiple requests.
-->
<service 
	name="FlexService" 
	scope="application"
	>
	<!-- 
	The message receivers configure this endpoint to use RPC style SOAP
	 -->
    <messageReceivers>
        <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
                         class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver"/>
        <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"
                         class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
    </messageReceivers>
    <!--
    This parameter tell axis what java what Java class to use for this endpoint. 
     -->
    <parameter name="ServiceClass">com.test.service.FlexService</parameter>
</service>
