<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
	xmlns:tns="urn:emersion:userapi"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xs="http://www.w3.org/2001/XMLSchema"
	name="Authentication"
	targetNamespace="urn:emersion:userapi">

	<wsdl:types>
		<xs:schema targetNamespace="urn:emersion:userapi">
			<xs:include schemaLocation="Authentication.xsd"/>
		</xs:schema>
	</wsdl:types>

 	<wsdl:message name="loginRequest">
		<wsdl:part element="tns:login" name="parameters" />
	</wsdl:message>

	<wsdl:message name="loginResponse">
		<wsdl:part element="tns:loginResponse" name="parameters" />
	</wsdl:message>

	<wsdl:portType name="Authentication">
		<wsdl:operation name="login">
			<wsdl:input message="tns:loginRequest"/>
			<wsdl:output message="tns:loginResponse"/>
		</wsdl:operation>
	</wsdl:portType>

	<wsdl:binding name="AuthenticationInterface" type="tns:Authentication">
		<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
		<wsdl:operation name="login">
			<soap:operation soapAction="http://userapi.emersion.com/Authentication/login"/>
			<wsdl:input>
				<soap:body use="literal"/>
			</wsdl:input>
			<wsdl:output>
				<soap:body use="literal"/>
			</wsdl:output>
		</wsdl:operation>
	</wsdl:binding>

	<wsdl:service name="Authentication">
		<wsdl:port binding="tns:AuthenticationInterface" name="Account">
      		<soap:address location="http://userapi.emersion.com/Authentication"/>
    	</wsdl:port>
 	</wsdl:service>
  
</wsdl:definitions>