<?xml version="1.0" encoding="ISO-8859-1"?>
<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="urn:MySoapServer" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="urn:MySoapServer">
<types>
<xsd:schema targetNamespace="urn:MySoapServer"
>
 <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
 <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
</xsd:schema>
</types>
<message name="postIdSolicitacaoRequest">
  <part name="id_ordem" type="xsd:string" />
  <part name="cashwin" type="xsd:string" />
  <part name="id_forn" type="xsd:string" /></message>
<message name="postIdSolicitacaoResponse">
  <part name="return" type="xsd:string" /></message>
<portType name="MySoapServerPortType">
  <operation name="postIdSolicitacao">
    <documentation>Enviar id e gerar o processo de envio de e-mail.</documentation>
    <input message="tns:postIdSolicitacaoRequest"/>
    <output message="tns:postIdSolicitacaoResponse"/>
  </operation>
</portType>
<binding name="MySoapServerBinding" type="tns:MySoapServerPortType">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  <operation name="postIdSolicitacao">
    <soap:operation soapAction="urn:MySoapServer#IdSolicitacao" style="rpc"/>
    <input><soap:body use="encoded" namespace="urn:MySoapServer" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
    <output><soap:body use="encoded" namespace="urn:MySoapServer" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  </operation>
</binding>
<service name="MySoapServer">
  <port name="MySoapServerPort" binding="tns:MySoapServerBinding">
    <soap:address location="http://www.ingasoft.com.br/WS_CN/index.php"/>
  </port>
</service>
</definitions>