<?xml version="1.0" ?>
<definitions	
		name="Authent" 
		targetNamespace = "http://falstaff.unm.edu/my_wsdl2.wsdl" 
		xmlns:tns="http://falstaff.unm.edu/my_wsdl2.wsdl"
		xmlns:xsd = "http://www.w3.org/2001/XMLSchema" 
		xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/"
		xmlns:soapenc = "http://schemas.xmlsoap.org/soap/encoding/"
		xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
		xmlns="http://schemas.xmlsoap.org/wsdl/"
>

	<types>
	<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema"
		>
	<xsd:simpleType name="inputvalue">
			<xsd:element name="name" type="xsd:string"/>
			<xsd:element name="password" type="xsd:string"/>
	</xsd:simpleType>

	<xsd:simpleType name="returnvalue">
		<xsd:element>
		        <xsd:element name="message" type="xsd:string"/>
		</xsd:element>
	</xsd:simpleType>

	</xsd:schema>
	</types>
	
	<message name="inforequest">
		<part name="name" type="xsd:string"/>
		<part name="password" type="xsd:string"/>
	</message>

	<message name="inforesponse">
		<part name="data" type="xsd:string"/>
	</message>
	
	<portType name="signon">
		<operation name="sign_on">
			<input message="tns:inforequest"/>
			<output message="tns:inforesponse"/>
		</operation>
	</portType>

	<binding name="AuthentBinding" type="tns:signon">
		<soap:binding style="rpc" 
			transport="http://schemas.xmlsoap.org/soap/http"/>
		<operation name="sign_on">
			<soap:operation 
				soapAction="http://129.24.63.80:8442/sign_on"
			/>
			<input>
				<soap:body 	
					use="encoded"
					
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
				/>
			</input>
			<output>
				<soap:body
					use="encoded"
					
					encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
				/>
			</output>
		</operation>
	</binding>

	<service name="Authent">
	<port name="signonport" binding="tns:AuthentBinding">
		<soap:address location="http://129.24.63.80:8442"/>
	</port>
	</service>
</definitions>




