LISTING 1

<?xml version="1.0" encoding="UTF-8"?>
<definitions name="ServiciosMercosur"
    targetNamespace="http://mercosur.wsdl/ServiciosMercosur/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
	xmlns:format="http://schemas.xmlsoap.org/wsdl/formatbinding/"
    xmlns:java="http://schemas.xmlsoap.org/wsdl/java/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://mercosur.wsdl/ServiciosMercosur/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://mercosur/">
    <import location="" namespace="http://mercosur/"/>
    <types>
        <schema attributeFormDefault="qualified"
            elementFormDefault="unqualified"
            targetNamespace="http://mercosur/"
            xmlns="http://www.w3.org/2001/XMLSchema"
            xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
            xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd1="http://mercosur/">
            <import namespace="http://schemas.xmlsoap.org/wsdl/"
			schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
            <import
                namespace="http://schemas.xmlsoap.org/soap/encoding/"
				schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
            <complexType name="Subregimen">
                <all>
                    <element name="codigoSubregimen" nillable="true" type="string"/>
                    <element name="codigoSubregimenDescripcion"
                        nillable="true" type="string"/>
                </all>
            </complexType>
            <complexType name="ArrayOfSubregimen">
                <complexContent>
                    <restriction base="soapenc:Array">
                        <sequence/>
                        <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd1:Subregimen[]"/>
                    </restriction>
                </complexContent>
            </complexType>
            </schema>
    </types>
    <message name="ws_ConsultaDestinacionRequest">
        <part name="numeroDeclaracion" type="xsd:string"/>
    </message>
    <message name="ws_ConsultaDestinacionResponse">
        <part name="result" type="xsd1:DeclaracionDeExportacion"/>
    </message>
    <portType name="ServiciosMercosur">
        <operation name="ws_ConsultaDestinacion" parameterOrder="numeroDeclaracion">
            <input message="tns:ws_ConsultaDestinacionRequest"
			name="ws_ConsultaDestinacionRequest"/>
            <output message="tns:ws_ConsultaDestinacionResponse"
			name="ws_ConsultaDestinacionResponse"/>
        </operation>
    </portType>
    <binding name="ServiciosMercosurBinding" type="tns:ServiciosMercosur">
        <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
        <operation name="ws_ConsultaDestinacion">
            <soap:operation soapAction="" style="rpc"/>
            <input name="ws_ConsultaDestinacionRequest">
                <soap:body
                    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
                    namespace="mercosur" parts="numeroDeclaracion" use="encoded"/>
            </input>
            <output name="ws_ConsultaDestinacionResponse">
                <soap:body
                    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
                    namespace="mercosur" use="encoded"/>
            </output>
        </operation>
    </binding>
    <service name="ServiciosMercosurService">
        <port binding="tns:ServiciosMercosurJavaBinding" name="ServiciosMercosurJavaPort">
            <java:address className="mercosur.ServiciosMercosur"/>
        </port>
    </service>
    <service name="http://mercosur.wsdl/ServiciosMercosur/">
        <port binding="tns:ServiciosMercosurBinding" name="ServiciosMercosurPort">
            <soap:address location="…"/>
        </port>
    </service>
</definitions>