<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:tns="https://www.segutae.com.mx/ws/nusoap" 
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
xmlns="http://schemas.xmlsoap.org/wsdl/" 
targetNamespace="https://www.segutae.com.mx/ws/nusoap">
<types>
	<xsd:schema targetNamespace="https://www.segutae.com.mx/ws/nusoap">
	<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
	<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
	</xsd:schema>
</types>

<message name="WSRequest">
<part name="cadena" type="xsd:string"/>
</message>
<message name="WSResponse">
<part name="resultado" type="xsd:string"/>
</message>

<portType name="ApplicationServicesPortType">
	<operation name="FrontendWS">
		<input message="tns:WSRequest"/>
		<output message="tns:WSResponse"/>
	</operation>

</portType>

<binding name="ApplicationServicesBinding" type="tns:ApplicationServicesPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>

<operation name="FrontendWS">
<soap:operation soapAction="https://www.segutae.com.mx/frontend.php" style="rpc"/>
<input>
<soap:body use="encoded" namespace="https://www.segutae.com.mx/ws/nusoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="https://www.segutae.com.mx/ws/nusoap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="ApplicationServices">
	<port name="ApplicationServicesPort" binding="tns:ApplicationServicesBinding">
		<soap:address location="https://www.segutae.com.mx/frontend.php"/>
	</port>
</service>
</definitions>