<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:element name="Crear">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="id_solicitud" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="id_producto" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="id_producto_padre" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="producto" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="cantidad" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="cantidad_autorizada" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="id_fin_movilizacion" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="fin_movilizacion" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="fin_movilizacion_imprimible" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="descripcion" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="estado_destino" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="ciudad_destino" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="ubicacion" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="CrearResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="CrearResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Editar">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="id" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="id_solicitud" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="id_producto" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="id_producto_padre" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="producto" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="cantidad" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="cantidad_autorizada" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="id_fin_movilizacion" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="fin_movilizacion" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="fin_movilizacion_imprimible" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="descripcion" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1" name="estado_destino" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="ciudad_destino" type="s:int" />
            <s:element minOccurs="0" maxOccurs="1" name="ubicacion" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="EditarResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="EditarResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="Borrar">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="id" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="BorrarResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="BorrarResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="CrearSoapIn">
    <wsdl:part name="parameters" element="tns:Crear" />
  </wsdl:message>
  <wsdl:message name="CrearSoapOut">
    <wsdl:part name="parameters" element="tns:CrearResponse" />
  </wsdl:message>
  <wsdl:message name="EditarSoapIn">
    <wsdl:part name="parameters" element="tns:Editar" />
  </wsdl:message>
  <wsdl:message name="EditarSoapOut">
    <wsdl:part name="parameters" element="tns:EditarResponse" />
  </wsdl:message>
  <wsdl:message name="BorrarSoapIn">
    <wsdl:part name="parameters" element="tns:Borrar" />
  </wsdl:message>
  <wsdl:message name="BorrarSoapOut">
    <wsdl:part name="parameters" element="tns:BorrarResponse" />
  </wsdl:message>
  <wsdl:portType name="SolicitudProductosSoap">
    <wsdl:operation name="Crear">
      <wsdl:input message="tns:CrearSoapIn" />
      <wsdl:output message="tns:CrearSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Editar">
      <wsdl:input message="tns:EditarSoapIn" />
      <wsdl:output message="tns:EditarSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="Borrar">
      <wsdl:input message="tns:BorrarSoapIn" />
      <wsdl:output message="tns:BorrarSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="SolicitudProductosSoap" type="tns:SolicitudProductosSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="Crear">
      <soap:operation soapAction="http://tempuri.org/Crear" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Editar">
      <soap:operation soapAction="http://tempuri.org/Editar" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Borrar">
      <soap:operation soapAction="http://tempuri.org/Borrar" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="SolicitudProductosSoap12" type="tns:SolicitudProductosSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="Crear">
      <soap12:operation soapAction="http://tempuri.org/Crear" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Editar">
      <soap12:operation soapAction="http://tempuri.org/Editar" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="Borrar">
      <soap12:operation soapAction="http://tempuri.org/Borrar" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="SolicitudProductos">
    <wsdl:port name="SolicitudProductosSoap" binding="tns:SolicitudProductosSoap">
      <soap:address location="http://unionganadera.com.mx/UGRS_Permissions/_SolicitudProductos.asmx" />
    </wsdl:port>
    <wsdl:port name="SolicitudProductosSoap12" binding="tns:SolicitudProductosSoap12">
      <soap12:address location="http://unionganadera.com.mx/UGRS_Permissions/_SolicitudProductos.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>