afipws 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
 - data/.rspec +1 -0
 - data/.rvmrc +1 -0
 - data/Gemfile +4 -0
 - data/Gemfile.lock +69 -0
 - data/README.rdoc +32 -0
 - data/Rakefile +7 -0
 - data/afipws.gemspec +29 -0
 - data/autotest/discover.rb +1 -0
 - data/lib/afipws.rb +23 -0
 - data/lib/afipws/client.rb +48 -0
 - data/lib/afipws/excepciones.rb +13 -0
 - data/lib/afipws/type_conversions.rb +38 -0
 - data/lib/afipws/version.rb +3 -0
 - data/lib/afipws/wsaa.rb +77 -0
 - data/lib/afipws/wsfe.rb +88 -0
 - data/lib/core_ext/hash.rb +21 -0
 - data/lib/core_ext/string.rb +9 -0
 - data/spec/afipws/test.crt +17 -0
 - data/spec/afipws/test.key +15 -0
 - data/spec/afipws/type_conversions_spec.rb +30 -0
 - data/spec/afipws/wsaa_spec.rb +68 -0
 - data/spec/afipws/wsfe_spec.rb +163 -0
 - data/spec/core_ext/hash_spec.rb +44 -0
 - data/spec/fixtures/fe_comp_consultar/success.xml +41 -0
 - data/spec/fixtures/fe_comp_tot_x_request/success.xml +9 -0
 - data/spec/fixtures/fe_comp_ultimo_autorizado/success.xml +11 -0
 - data/spec/fixtures/fe_dummy/success.xml +11 -0
 - data/spec/fixtures/fe_param_get_cotizacion/dolar.xml +13 -0
 - data/spec/fixtures/fe_param_get_cotizacion/inexistente.xml +14 -0
 - data/spec/fixtures/fe_param_get_tipos_cbte/failure_1_error.xml +14 -0
 - data/spec/fixtures/fe_param_get_tipos_cbte/failure_2_errors.xml +18 -0
 - data/spec/fixtures/fe_param_get_tipos_cbte/success.xml +22 -0
 - data/spec/fixtures/fe_param_get_tipos_doc/success.xml +16 -0
 - data/spec/fixtures/fe_param_get_tipos_iva/success.xml +16 -0
 - data/spec/fixtures/fe_param_get_tipos_monedas/success.xml +22 -0
 - data/spec/fixtures/fe_param_get_tipos_tributos/success.xml +16 -0
 - data/spec/fixtures/fecae_solicitar/autorizacion_1_cbte.xml +30 -0
 - data/spec/fixtures/fecae_solicitar/autorizacion_2_cbtes.xml +41 -0
 - data/spec/fixtures/fecae_solicitar/observaciones.xml +40 -0
 - data/spec/fixtures/login_cms/fault.xml +12 -0
 - data/spec/fixtures/login_cms/success.xml +16 -0
 - data/spec/fixtures/login_cms/token_expirado.xml +14 -0
 - data/spec/fixtures/wsaa.wsdl +103 -0
 - data/spec/fixtures/wsfe.wsdl +1372 -0
 - data/spec/manual/autorizar_comprobante.rb +22 -0
 - data/spec/manual/generar_keys.txt +8 -0
 - data/spec/manual/obtener_ta.rb +18 -0
 - data/spec/spec_helper.rb +12 -0
 - data/spec/support/matchers.rb +37 -0
 - metadata +237 -0
 
| 
         @@ -0,0 +1,1372 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="utf-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://ar.gov.afip.dif.FEV1/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://ar.gov.afip.dif.FEV1/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
         
     | 
| 
      
 3 
     | 
    
         
            +
              <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Web Service orientado  al  servicio  de Facturacion electronica RG2485 V1</wsdl:documentation>
         
     | 
| 
      
 4 
     | 
    
         
            +
              <wsdl:types>
         
     | 
| 
      
 5 
     | 
    
         
            +
                <s:schema elementFormDefault="qualified" targetNamespace="http://ar.gov.afip.dif.FEV1/">
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <s:element name="FECAESolicitar">
         
     | 
| 
      
 7 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 8 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 9 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 10 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FeCAEReq" type="tns:FECAERequest" />
         
     | 
| 
      
 11 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 12 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 13 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 14 
     | 
    
         
            +
                  <s:complexType name="FEAuthRequest">
         
     | 
| 
      
 15 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 16 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
         
     | 
| 
      
 17 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Sign" type="s:string" />
         
     | 
| 
      
 18 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Cuit" type="s:long" />
         
     | 
| 
      
 19 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 20 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 21 
     | 
    
         
            +
                  <s:complexType name="FECAERequest">
         
     | 
| 
      
 22 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 23 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeCabReq" type="tns:FECAECabRequest" />
         
     | 
| 
      
 24 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeDetReq" type="tns:ArrayOfFECAEDetRequest" />
         
     | 
| 
      
 25 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 26 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 27 
     | 
    
         
            +
                  <s:complexType name="FECAECabRequest">
         
     | 
| 
      
 28 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 29 
     | 
    
         
            +
                      <s:extension base="tns:FECabRequest" />
         
     | 
| 
      
 30 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 31 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  <s:complexType name="FECabRequest">
         
     | 
| 
      
 33 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 34 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CantReg" type="s:int" />
         
     | 
| 
      
 35 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 36 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 37 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 38 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 39 
     | 
    
         
            +
                  <s:complexType name="ArrayOfFECAEDetRequest">
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 41 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="FECAEDetRequest" nillable="true" type="tns:FECAEDetRequest" />
         
     | 
| 
      
 42 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 44 
     | 
    
         
            +
                  <s:complexType name="FECAEDetRequest">
         
     | 
| 
      
 45 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 46 
     | 
    
         
            +
                      <s:extension base="tns:FEDetRequest" />
         
     | 
| 
      
 47 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 48 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 49 
     | 
    
         
            +
                  <s:complexType name="FEDetRequest">
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Concepto" type="s:int" />
         
     | 
| 
      
 52 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="DocTipo" type="s:int" />
         
     | 
| 
      
 53 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="DocNro" type="s:long" />
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteDesde" type="s:long" />
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteHasta" type="s:long" />
         
     | 
| 
      
 56 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="CbteFch" type="s:string" />
         
     | 
| 
      
 57 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpTotal" type="s:double" />
         
     | 
| 
      
 58 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpTotConc" type="s:double" />
         
     | 
| 
      
 59 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpNeto" type="s:double" />
         
     | 
| 
      
 60 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpOpEx" type="s:double" />
         
     | 
| 
      
 61 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpTrib" type="s:double" />
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="ImpIVA" type="s:double" />
         
     | 
| 
      
 63 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchServDesde" type="s:string" />
         
     | 
| 
      
 64 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchServHasta" type="s:string" />
         
     | 
| 
      
 65 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchVtoPago" type="s:string" />
         
     | 
| 
      
 66 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="MonId" type="s:string" />
         
     | 
| 
      
 67 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="MonCotiz" type="s:double" />
         
     | 
| 
      
 68 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="CbtesAsoc" type="tns:ArrayOfCbteAsoc" />
         
     | 
| 
      
 69 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Tributos" type="tns:ArrayOfTributo" />
         
     | 
| 
      
 70 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Iva" type="tns:ArrayOfAlicIva" />
         
     | 
| 
      
 71 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Opcionales" type="tns:ArrayOfOpcional" />
         
     | 
| 
      
 72 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 73 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 74 
     | 
    
         
            +
                  <s:complexType name="ArrayOfCbteAsoc">
         
     | 
| 
      
 75 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 76 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="CbteAsoc" nillable="true" type="tns:CbteAsoc" />
         
     | 
| 
      
 77 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 78 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 79 
     | 
    
         
            +
                  <s:complexType name="CbteAsoc">
         
     | 
| 
      
 80 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 81 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Tipo" type="s:int" />
         
     | 
| 
      
 82 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 83 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Nro" type="s:long" />
         
     | 
| 
      
 84 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 85 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 86 
     | 
    
         
            +
                  <s:complexType name="ArrayOfTributo">
         
     | 
| 
      
 87 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 88 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Tributo" nillable="true" type="tns:Tributo" />
         
     | 
| 
      
 89 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 90 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 91 
     | 
    
         
            +
                  <s:complexType name="Tributo">
         
     | 
| 
      
 92 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 93 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:short" />
         
     | 
| 
      
 94 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 95 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="BaseImp" type="s:double" />
         
     | 
| 
      
 96 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Alic" type="s:double" />
         
     | 
| 
      
 97 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Importe" type="s:double" />
         
     | 
| 
      
 98 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 99 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 100 
     | 
    
         
            +
                  <s:complexType name="ArrayOfAlicIva">
         
     | 
| 
      
 101 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 102 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="AlicIva" nillable="true" type="tns:AlicIva" />
         
     | 
| 
      
 103 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 104 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 105 
     | 
    
         
            +
                  <s:complexType name="AlicIva">
         
     | 
| 
      
 106 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 107 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
         
     | 
| 
      
 108 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="BaseImp" type="s:double" />
         
     | 
| 
      
 109 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Importe" type="s:double" />
         
     | 
| 
      
 110 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 111 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 112 
     | 
    
         
            +
                  <s:complexType name="ArrayOfOpcional">
         
     | 
| 
      
 113 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 114 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Opcional" nillable="true" type="tns:Opcional" />
         
     | 
| 
      
 115 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 116 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 117 
     | 
    
         
            +
                  <s:complexType name="Opcional">
         
     | 
| 
      
 118 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 119 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
         
     | 
| 
      
 120 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Valor" type="s:string" />
         
     | 
| 
      
 121 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 122 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 123 
     | 
    
         
            +
                  <s:element name="FECAESolicitarResponse">
         
     | 
| 
      
 124 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 125 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 126 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAESolicitarResult" type="tns:FECAEResponse" />
         
     | 
| 
      
 127 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 128 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 129 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 130 
     | 
    
         
            +
                  <s:complexType name="FECAEResponse">
         
     | 
| 
      
 131 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 132 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeCabResp" type="tns:FECAECabResponse" />
         
     | 
| 
      
 133 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeDetResp" type="tns:ArrayOfFECAEDetResponse" />
         
     | 
| 
      
 134 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 135 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 136 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 137 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 138 
     | 
    
         
            +
                  <s:complexType name="FECAECabResponse">
         
     | 
| 
      
 139 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 140 
     | 
    
         
            +
                      <s:extension base="tns:FECabResponse" />
         
     | 
| 
      
 141 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 142 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 143 
     | 
    
         
            +
                  <s:complexType name="FECabResponse">
         
     | 
| 
      
 144 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 145 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Cuit" type="s:long" />
         
     | 
| 
      
 146 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 147 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 148 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchProceso" type="s:string" />
         
     | 
| 
      
 149 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CantReg" type="s:int" />
         
     | 
| 
      
 150 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Resultado" type="s:string" />
         
     | 
| 
      
 151 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Reproceso" type="s:string" />
         
     | 
| 
      
 152 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 153 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 154 
     | 
    
         
            +
                  <s:complexType name="ArrayOfFECAEDetResponse">
         
     | 
| 
      
 155 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 156 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="FECAEDetResponse" nillable="true" type="tns:FECAEDetResponse" />
         
     | 
| 
      
 157 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 158 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 159 
     | 
    
         
            +
                  <s:complexType name="FECAEDetResponse">
         
     | 
| 
      
 160 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 161 
     | 
    
         
            +
                      <s:extension base="tns:FEDetResponse">
         
     | 
| 
      
 162 
     | 
    
         
            +
                        <s:sequence>
         
     | 
| 
      
 163 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="CAE" type="s:string" />
         
     | 
| 
      
 164 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="CAEFchVto" type="s:string" />
         
     | 
| 
      
 165 
     | 
    
         
            +
                        </s:sequence>
         
     | 
| 
      
 166 
     | 
    
         
            +
                      </s:extension>
         
     | 
| 
      
 167 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 168 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 169 
     | 
    
         
            +
                  <s:complexType name="FEDetResponse">
         
     | 
| 
      
 170 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 171 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Concepto" type="s:int" />
         
     | 
| 
      
 172 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="DocTipo" type="s:int" />
         
     | 
| 
      
 173 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="DocNro" type="s:long" />
         
     | 
| 
      
 174 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteDesde" type="s:long" />
         
     | 
| 
      
 175 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteHasta" type="s:long" />
         
     | 
| 
      
 176 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="CbteFch" type="s:string" />
         
     | 
| 
      
 177 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Resultado" type="s:string" />
         
     | 
| 
      
 178 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Observaciones" type="tns:ArrayOfObs" />
         
     | 
| 
      
 179 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 180 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 181 
     | 
    
         
            +
                  <s:complexType name="ArrayOfObs">
         
     | 
| 
      
 182 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 183 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Obs" nillable="true" type="tns:Obs" />
         
     | 
| 
      
 184 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 185 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 186 
     | 
    
         
            +
                  <s:complexType name="Obs">
         
     | 
| 
      
 187 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 188 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Code" type="s:int" />
         
     | 
| 
      
 189 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Msg" type="s:string" />
         
     | 
| 
      
 190 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 191 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 192 
     | 
    
         
            +
                  <s:complexType name="ArrayOfEvt">
         
     | 
| 
      
 193 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 194 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Evt" nillable="true" type="tns:Evt" />
         
     | 
| 
      
 195 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 196 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 197 
     | 
    
         
            +
                  <s:complexType name="Evt">
         
     | 
| 
      
 198 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 199 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Code" type="s:int" />
         
     | 
| 
      
 200 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Msg" type="s:string" />
         
     | 
| 
      
 201 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 202 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 203 
     | 
    
         
            +
                  <s:complexType name="ArrayOfErr">
         
     | 
| 
      
 204 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 205 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Err" nillable="true" type="tns:Err" />
         
     | 
| 
      
 206 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 207 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 208 
     | 
    
         
            +
                  <s:complexType name="Err">
         
     | 
| 
      
 209 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 210 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Code" type="s:int" />
         
     | 
| 
      
 211 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Msg" type="s:string" />
         
     | 
| 
      
 212 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 213 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 214 
     | 
    
         
            +
                  <s:element name="FECompTotXRequest">
         
     | 
| 
      
 215 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 216 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 217 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 218 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 219 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 220 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 221 
     | 
    
         
            +
                  <s:element name="FECompTotXRequestResponse">
         
     | 
| 
      
 222 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 223 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 224 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECompTotXRequestResult" type="tns:FERegXReqResponse" />
         
     | 
| 
      
 225 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 226 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 227 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 228 
     | 
    
         
            +
                  <s:complexType name="FERegXReqResponse">
         
     | 
| 
      
 229 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 230 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="RegXReq" type="s:int" />
         
     | 
| 
      
 231 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 232 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 233 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 234 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 235 
     | 
    
         
            +
                  <s:element name="FEDummy">
         
     | 
| 
      
 236 
     | 
    
         
            +
                    <s:complexType />
         
     | 
| 
      
 237 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 238 
     | 
    
         
            +
                  <s:element name="FEDummyResponse">
         
     | 
| 
      
 239 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 240 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 241 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEDummyResult" type="tns:DummyResponse" />
         
     | 
| 
      
 242 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 243 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 244 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 245 
     | 
    
         
            +
                  <s:complexType name="DummyResponse">
         
     | 
| 
      
 246 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 247 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="AppServer" type="s:string" />
         
     | 
| 
      
 248 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="DbServer" type="s:string" />
         
     | 
| 
      
 249 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="AuthServer" type="s:string" />
         
     | 
| 
      
 250 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 251 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 252 
     | 
    
         
            +
                  <s:element name="FECompUltimoAutorizado">
         
     | 
| 
      
 253 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 254 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 255 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 256 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 257 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 258 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 259 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 260 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 261 
     | 
    
         
            +
                  <s:element name="FECompUltimoAutorizadoResponse">
         
     | 
| 
      
 262 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 263 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 264 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECompUltimoAutorizadoResult" type="tns:FERecuperaLastCbteResponse" />
         
     | 
| 
      
 265 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 266 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 267 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 268 
     | 
    
         
            +
                  <s:complexType name="FERecuperaLastCbteResponse">
         
     | 
| 
      
 269 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 270 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 271 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 272 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteNro" type="s:int" />
         
     | 
| 
      
 273 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 274 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 275 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 276 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 277 
     | 
    
         
            +
                  <s:element name="FECompConsultar">
         
     | 
| 
      
 278 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 279 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 280 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 281 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FeCompConsReq" type="tns:FECompConsultaReq" />
         
     | 
| 
      
 282 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 283 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 284 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 285 
     | 
    
         
            +
                  <s:complexType name="FECompConsultaReq">
         
     | 
| 
      
 286 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 287 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 288 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="CbteNro" type="s:long" />
         
     | 
| 
      
 289 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 290 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 291 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 292 
     | 
    
         
            +
                  <s:element name="FECompConsultarResponse">
         
     | 
| 
      
 293 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 294 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 295 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECompConsultarResult" type="tns:FECompConsultaResponse" />
         
     | 
| 
      
 296 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 297 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 298 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 299 
     | 
    
         
            +
                  <s:complexType name="FECompConsultaResponse">
         
     | 
| 
      
 300 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 301 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:FECompConsResponse" />
         
     | 
| 
      
 302 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 303 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 304 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 305 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 306 
     | 
    
         
            +
                  <s:complexType name="FECompConsResponse">
         
     | 
| 
      
 307 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 308 
     | 
    
         
            +
                      <s:extension base="tns:FECAEDetRequest">
         
     | 
| 
      
 309 
     | 
    
         
            +
                        <s:sequence>
         
     | 
| 
      
 310 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="Resultado" type="s:string" />
         
     | 
| 
      
 311 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="CodAutorizacion" type="s:string" />
         
     | 
| 
      
 312 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="EmisionTipo" type="s:string" />
         
     | 
| 
      
 313 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="FchVto" type="s:string" />
         
     | 
| 
      
 314 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="FchProceso" type="s:string" />
         
     | 
| 
      
 315 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="Observaciones" type="tns:ArrayOfObs" />
         
     | 
| 
      
 316 
     | 
    
         
            +
                          <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 317 
     | 
    
         
            +
                          <s:element minOccurs="1" maxOccurs="1" name="CbteTipo" type="s:int" />
         
     | 
| 
      
 318 
     | 
    
         
            +
                        </s:sequence>
         
     | 
| 
      
 319 
     | 
    
         
            +
                      </s:extension>
         
     | 
| 
      
 320 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 321 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 322 
     | 
    
         
            +
                  <s:element name="FECAEARegInformativo">
         
     | 
| 
      
 323 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 324 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 325 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 326 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FeCAEARegInfReq" type="tns:FECAEARequest" />
         
     | 
| 
      
 327 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 328 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 329 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 330 
     | 
    
         
            +
                  <s:complexType name="FECAEARequest">
         
     | 
| 
      
 331 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 332 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeCabReq" type="tns:FECAEACabRequest" />
         
     | 
| 
      
 333 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeDetReq" type="tns:ArrayOfFECAEADetRequest" />
         
     | 
| 
      
 334 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 335 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 336 
     | 
    
         
            +
                  <s:complexType name="FECAEACabRequest">
         
     | 
| 
      
 337 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 338 
     | 
    
         
            +
                      <s:extension base="tns:FECabRequest" />
         
     | 
| 
      
 339 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 340 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 341 
     | 
    
         
            +
                  <s:complexType name="ArrayOfFECAEADetRequest">
         
     | 
| 
      
 342 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 343 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="FECAEADetRequest" nillable="true" type="tns:FECAEADetRequest" />
         
     | 
| 
      
 344 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 345 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 346 
     | 
    
         
            +
                  <s:complexType name="FECAEADetRequest">
         
     | 
| 
      
 347 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 348 
     | 
    
         
            +
                      <s:extension base="tns:FEDetRequest">
         
     | 
| 
      
 349 
     | 
    
         
            +
                        <s:sequence>
         
     | 
| 
      
 350 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 351 
     | 
    
         
            +
                        </s:sequence>
         
     | 
| 
      
 352 
     | 
    
         
            +
                      </s:extension>
         
     | 
| 
      
 353 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 354 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 355 
     | 
    
         
            +
                  <s:element name="FECAEARegInformativoResponse">
         
     | 
| 
      
 356 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 357 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 358 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAEARegInformativoResult" type="tns:FECAEAResponse" />
         
     | 
| 
      
 359 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 360 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 361 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 362 
     | 
    
         
            +
                  <s:complexType name="FECAEAResponse">
         
     | 
| 
      
 363 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 364 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeCabResp" type="tns:FECAEACabResponse" />
         
     | 
| 
      
 365 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FeDetResp" type="tns:ArrayOfFECAEADetResponse" />
         
     | 
| 
      
 366 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 367 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 368 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 369 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 370 
     | 
    
         
            +
                  <s:complexType name="FECAEACabResponse">
         
     | 
| 
      
 371 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 372 
     | 
    
         
            +
                      <s:extension base="tns:FECabResponse" />
         
     | 
| 
      
 373 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 374 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 375 
     | 
    
         
            +
                  <s:complexType name="ArrayOfFECAEADetResponse">
         
     | 
| 
      
 376 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 377 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="FECAEADetResponse" nillable="true" type="tns:FECAEADetResponse" />
         
     | 
| 
      
 378 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 379 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 380 
     | 
    
         
            +
                  <s:complexType name="FECAEADetResponse">
         
     | 
| 
      
 381 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 382 
     | 
    
         
            +
                      <s:extension base="tns:FEDetResponse">
         
     | 
| 
      
 383 
     | 
    
         
            +
                        <s:sequence>
         
     | 
| 
      
 384 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 385 
     | 
    
         
            +
                        </s:sequence>
         
     | 
| 
      
 386 
     | 
    
         
            +
                      </s:extension>
         
     | 
| 
      
 387 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 388 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 389 
     | 
    
         
            +
                  <s:element name="FECAEASolicitar">
         
     | 
| 
      
 390 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 391 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 392 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 393 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="Periodo" type="s:int" />
         
     | 
| 
      
 394 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="Orden" type="s:short" />
         
     | 
| 
      
 395 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 396 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 397 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 398 
     | 
    
         
            +
                  <s:element name="FECAEASolicitarResponse">
         
     | 
| 
      
 399 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 400 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 401 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAEASolicitarResult" type="tns:FECAEAGetResponse" />
         
     | 
| 
      
 402 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 403 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 404 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 405 
     | 
    
         
            +
                  <s:complexType name="FECAEAGetResponse">
         
     | 
| 
      
 406 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 407 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:FECAEAGet" />
         
     | 
| 
      
 408 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 409 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 410 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 411 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 412 
     | 
    
         
            +
                  <s:complexType name="FECAEAGet">
         
     | 
| 
      
 413 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 414 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 415 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Periodo" type="s:int" />
         
     | 
| 
      
 416 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Orden" type="s:short" />
         
     | 
| 
      
 417 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchVigDesde" type="s:string" />
         
     | 
| 
      
 418 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchVigHasta" type="s:string" />
         
     | 
| 
      
 419 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchTopeInf" type="s:string" />
         
     | 
| 
      
 420 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchProceso" type="s:string" />
         
     | 
| 
      
 421 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 422 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 423 
     | 
    
         
            +
                  <s:element name="FECAEASinMovimientoConsultar">
         
     | 
| 
      
 424 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 425 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 426 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 427 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 428 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 429 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 430 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 431 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 432 
     | 
    
         
            +
                  <s:element name="FECAEASinMovimientoConsultarResponse">
         
     | 
| 
      
 433 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 434 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 435 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAEASinMovimientoConsultarResult" type="tns:FECAEASinMovConsResponse" />
         
     | 
| 
      
 436 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 437 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 438 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 439 
     | 
    
         
            +
                  <s:complexType name="FECAEASinMovConsResponse">
         
     | 
| 
      
 440 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 441 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfFECAEASinMov" />
         
     | 
| 
      
 442 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 443 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 444 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 445 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 446 
     | 
    
         
            +
                  <s:complexType name="ArrayOfFECAEASinMov">
         
     | 
| 
      
 447 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 448 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="FECAEASinMov" nillable="true" type="tns:FECAEASinMov" />
         
     | 
| 
      
 449 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 450 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 451 
     | 
    
         
            +
                  <s:complexType name="FECAEASinMov">
         
     | 
| 
      
 452 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 453 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 454 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchProceso" type="s:string" />
         
     | 
| 
      
 455 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 456 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 457 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 458 
     | 
    
         
            +
                  <s:element name="FECAEASinMovimientoInformar">
         
     | 
| 
      
 459 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 460 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 461 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 462 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="PtoVta" type="s:int" />
         
     | 
| 
      
 463 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="CAEA" type="s:string" />
         
     | 
| 
      
 464 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 465 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 466 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 467 
     | 
    
         
            +
                  <s:element name="FECAEASinMovimientoInformarResponse">
         
     | 
| 
      
 468 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 469 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 470 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAEASinMovimientoInformarResult" type="tns:FECAEASinMovResponse" />
         
     | 
| 
      
 471 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 472 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 473 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 474 
     | 
    
         
            +
                  <s:complexType name="FECAEASinMovResponse">
         
     | 
| 
      
 475 
     | 
    
         
            +
                    <s:complexContent mixed="false">
         
     | 
| 
      
 476 
     | 
    
         
            +
                      <s:extension base="tns:FECAEASinMov">
         
     | 
| 
      
 477 
     | 
    
         
            +
                        <s:sequence>
         
     | 
| 
      
 478 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="Resultado" type="s:string" />
         
     | 
| 
      
 479 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 480 
     | 
    
         
            +
                          <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 481 
     | 
    
         
            +
                        </s:sequence>
         
     | 
| 
      
 482 
     | 
    
         
            +
                      </s:extension>
         
     | 
| 
      
 483 
     | 
    
         
            +
                    </s:complexContent>
         
     | 
| 
      
 484 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 485 
     | 
    
         
            +
                  <s:element name="FECAEAConsultar">
         
     | 
| 
      
 486 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 487 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 488 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 489 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="Periodo" type="s:int" />
         
     | 
| 
      
 490 
     | 
    
         
            +
                        <s:element minOccurs="1" maxOccurs="1" name="Orden" type="s:short" />
         
     | 
| 
      
 491 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 492 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 493 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 494 
     | 
    
         
            +
                  <s:element name="FECAEAConsultarResponse">
         
     | 
| 
      
 495 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 496 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 497 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FECAEAConsultarResult" type="tns:FECAEAGetResponse" />
         
     | 
| 
      
 498 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 499 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 500 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 501 
     | 
    
         
            +
                  <s:element name="FEParamGetCotizacion">
         
     | 
| 
      
 502 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 503 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 504 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 505 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="MonId" type="s:string" />
         
     | 
| 
      
 506 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 507 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 508 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 509 
     | 
    
         
            +
                  <s:element name="FEParamGetCotizacionResponse">
         
     | 
| 
      
 510 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 511 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 512 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetCotizacionResult" type="tns:FECotizacionResponse" />
         
     | 
| 
      
 513 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 514 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 515 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 516 
     | 
    
         
            +
                  <s:complexType name="FECotizacionResponse">
         
     | 
| 
      
 517 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 518 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:Cotizacion" />
         
     | 
| 
      
 519 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 520 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 521 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 522 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 523 
     | 
    
         
            +
                  <s:complexType name="Cotizacion">
         
     | 
| 
      
 524 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 525 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="MonId" type="s:string" />
         
     | 
| 
      
 526 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="MonCotiz" type="s:double" />
         
     | 
| 
      
 527 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchCotiz" type="s:string" />
         
     | 
| 
      
 528 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 529 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 530 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposTributos">
         
     | 
| 
      
 531 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 532 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 533 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 534 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 535 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 536 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 537 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposTributosResponse">
         
     | 
| 
      
 538 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 539 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 540 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposTributosResult" type="tns:FETributoResponse" />
         
     | 
| 
      
 541 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 542 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 543 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 544 
     | 
    
         
            +
                  <s:complexType name="FETributoResponse">
         
     | 
| 
      
 545 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 546 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfTributoTipo" />
         
     | 
| 
      
 547 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 548 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 549 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 550 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 551 
     | 
    
         
            +
                  <s:complexType name="ArrayOfTributoTipo">
         
     | 
| 
      
 552 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 553 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="TributoTipo" nillable="true" type="tns:TributoTipo" />
         
     | 
| 
      
 554 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 555 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 556 
     | 
    
         
            +
                  <s:complexType name="TributoTipo">
         
     | 
| 
      
 557 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 558 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:short" />
         
     | 
| 
      
 559 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 560 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 561 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 562 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 563 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 564 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposMonedas">
         
     | 
| 
      
 565 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 566 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 567 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 568 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 569 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 570 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 571 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposMonedasResponse">
         
     | 
| 
      
 572 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 573 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 574 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposMonedasResult" type="tns:MonedaResponse" />
         
     | 
| 
      
 575 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 576 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 577 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 578 
     | 
    
         
            +
                  <s:complexType name="MonedaResponse">
         
     | 
| 
      
 579 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 580 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfMoneda" />
         
     | 
| 
      
 581 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 582 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 583 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 584 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 585 
     | 
    
         
            +
                  <s:complexType name="ArrayOfMoneda">
         
     | 
| 
      
 586 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 587 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="Moneda" nillable="true" type="tns:Moneda" />
         
     | 
| 
      
 588 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 589 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 590 
     | 
    
         
            +
                  <s:complexType name="Moneda">
         
     | 
| 
      
 591 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 592 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
         
     | 
| 
      
 593 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 594 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 595 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 596 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 597 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 598 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposIva">
         
     | 
| 
      
 599 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 600 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 601 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 602 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 603 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 604 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 605 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposIvaResponse">
         
     | 
| 
      
 606 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 607 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 608 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposIvaResult" type="tns:IvaTipoResponse" />
         
     | 
| 
      
 609 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 610 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 611 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 612 
     | 
    
         
            +
                  <s:complexType name="IvaTipoResponse">
         
     | 
| 
      
 613 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 614 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfIvaTipo" />
         
     | 
| 
      
 615 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 616 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 617 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 618 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 619 
     | 
    
         
            +
                  <s:complexType name="ArrayOfIvaTipo">
         
     | 
| 
      
 620 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 621 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="IvaTipo" nillable="true" type="tns:IvaTipo" />
         
     | 
| 
      
 622 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 623 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 624 
     | 
    
         
            +
                  <s:complexType name="IvaTipo">
         
     | 
| 
      
 625 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 626 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
         
     | 
| 
      
 627 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 628 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 629 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 630 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 631 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 632 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposOpcional">
         
     | 
| 
      
 633 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 634 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 635 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 636 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 637 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 638 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 639 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposOpcionalResponse">
         
     | 
| 
      
 640 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 641 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 642 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposOpcionalResult" type="tns:OpcionalTipoResponse" />
         
     | 
| 
      
 643 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 644 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 645 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 646 
     | 
    
         
            +
                  <s:complexType name="OpcionalTipoResponse">
         
     | 
| 
      
 647 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 648 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfOpcionalTipo" />
         
     | 
| 
      
 649 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 650 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 651 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 652 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 653 
     | 
    
         
            +
                  <s:complexType name="ArrayOfOpcionalTipo">
         
     | 
| 
      
 654 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 655 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="OpcionalTipo" nillable="true" type="tns:OpcionalTipo" />
         
     | 
| 
      
 656 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 657 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 658 
     | 
    
         
            +
                  <s:complexType name="OpcionalTipo">
         
     | 
| 
      
 659 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 660 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
         
     | 
| 
      
 661 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 662 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 663 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 664 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 665 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 666 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposConcepto">
         
     | 
| 
      
 667 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 668 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 669 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 670 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 671 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 672 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 673 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposConceptoResponse">
         
     | 
| 
      
 674 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 675 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 676 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposConceptoResult" type="tns:ConceptoTipoResponse" />
         
     | 
| 
      
 677 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 678 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 679 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 680 
     | 
    
         
            +
                  <s:complexType name="ConceptoTipoResponse">
         
     | 
| 
      
 681 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 682 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfConceptoTipo" />
         
     | 
| 
      
 683 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 684 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 685 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 686 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 687 
     | 
    
         
            +
                  <s:complexType name="ArrayOfConceptoTipo">
         
     | 
| 
      
 688 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 689 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="ConceptoTipo" nillable="true" type="tns:ConceptoTipo" />
         
     | 
| 
      
 690 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 691 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 692 
     | 
    
         
            +
                  <s:complexType name="ConceptoTipo">
         
     | 
| 
      
 693 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 694 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
         
     | 
| 
      
 695 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 696 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 697 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 698 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 699 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 700 
     | 
    
         
            +
                  <s:element name="FEParamGetPtosVenta">
         
     | 
| 
      
 701 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 702 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 703 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 704 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 705 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 706 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 707 
     | 
    
         
            +
                  <s:element name="FEParamGetPtosVentaResponse">
         
     | 
| 
      
 708 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 709 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 710 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetPtosVentaResult" type="tns:FEPtoVentaResponse" />
         
     | 
| 
      
 711 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 712 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 713 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 714 
     | 
    
         
            +
                  <s:complexType name="FEPtoVentaResponse">
         
     | 
| 
      
 715 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 716 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfPtoVenta" />
         
     | 
| 
      
 717 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 718 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 719 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 720 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 721 
     | 
    
         
            +
                  <s:complexType name="ArrayOfPtoVenta">
         
     | 
| 
      
 722 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 723 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="PtoVenta" nillable="true" type="tns:PtoVenta" />
         
     | 
| 
      
 724 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 725 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 726 
     | 
    
         
            +
                  <s:complexType name="PtoVenta">
         
     | 
| 
      
 727 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 728 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Nro" type="s:short" />
         
     | 
| 
      
 729 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="EmisionTipo" type="s:string" />
         
     | 
| 
      
 730 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Bloqueado" type="s:string" />
         
     | 
| 
      
 731 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchBaja" type="s:string" />
         
     | 
| 
      
 732 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 733 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 734 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposCbte">
         
     | 
| 
      
 735 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 736 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 737 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 738 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 739 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 740 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 741 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposCbteResponse">
         
     | 
| 
      
 742 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 743 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 744 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposCbteResult" type="tns:CbteTipoResponse" />
         
     | 
| 
      
 745 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 746 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 747 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 748 
     | 
    
         
            +
                  <s:complexType name="CbteTipoResponse">
         
     | 
| 
      
 749 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 750 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfCbteTipo" />
         
     | 
| 
      
 751 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 752 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 753 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 754 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 755 
     | 
    
         
            +
                  <s:complexType name="ArrayOfCbteTipo">
         
     | 
| 
      
 756 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 757 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="CbteTipo" nillable="true" type="tns:CbteTipo" />
         
     | 
| 
      
 758 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 759 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 760 
     | 
    
         
            +
                  <s:complexType name="CbteTipo">
         
     | 
| 
      
 761 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 762 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
         
     | 
| 
      
 763 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 764 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 765 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 766 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 767 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 768 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposDoc">
         
     | 
| 
      
 769 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 770 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 771 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="Auth" type="tns:FEAuthRequest" />
         
     | 
| 
      
 772 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 773 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 774 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 775 
     | 
    
         
            +
                  <s:element name="FEParamGetTiposDocResponse">
         
     | 
| 
      
 776 
     | 
    
         
            +
                    <s:complexType>
         
     | 
| 
      
 777 
     | 
    
         
            +
                      <s:sequence>
         
     | 
| 
      
 778 
     | 
    
         
            +
                        <s:element minOccurs="0" maxOccurs="1" name="FEParamGetTiposDocResult" type="tns:DocTipoResponse" />
         
     | 
| 
      
 779 
     | 
    
         
            +
                      </s:sequence>
         
     | 
| 
      
 780 
     | 
    
         
            +
                    </s:complexType>
         
     | 
| 
      
 781 
     | 
    
         
            +
                  </s:element>
         
     | 
| 
      
 782 
     | 
    
         
            +
                  <s:complexType name="DocTipoResponse">
         
     | 
| 
      
 783 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 784 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="ResultGet" type="tns:ArrayOfDocTipo" />
         
     | 
| 
      
 785 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Errors" type="tns:ArrayOfErr" />
         
     | 
| 
      
 786 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Events" type="tns:ArrayOfEvt" />
         
     | 
| 
      
 787 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 788 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 789 
     | 
    
         
            +
                  <s:complexType name="ArrayOfDocTipo">
         
     | 
| 
      
 790 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 791 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="unbounded" name="DocTipo" nillable="true" type="tns:DocTipo" />
         
     | 
| 
      
 792 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 793 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 794 
     | 
    
         
            +
                  <s:complexType name="DocTipo">
         
     | 
| 
      
 795 
     | 
    
         
            +
                    <s:sequence>
         
     | 
| 
      
 796 
     | 
    
         
            +
                      <s:element minOccurs="1" maxOccurs="1" name="Id" type="s:int" />
         
     | 
| 
      
 797 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="Desc" type="s:string" />
         
     | 
| 
      
 798 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchDesde" type="s:string" />
         
     | 
| 
      
 799 
     | 
    
         
            +
                      <s:element minOccurs="0" maxOccurs="1" name="FchHasta" type="s:string" />
         
     | 
| 
      
 800 
     | 
    
         
            +
                    </s:sequence>
         
     | 
| 
      
 801 
     | 
    
         
            +
                  </s:complexType>
         
     | 
| 
      
 802 
     | 
    
         
            +
                </s:schema>
         
     | 
| 
      
 803 
     | 
    
         
            +
              </wsdl:types>
         
     | 
| 
      
 804 
     | 
    
         
            +
              <wsdl:message name="FECAESolicitarSoapIn">
         
     | 
| 
      
 805 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAESolicitar" />
         
     | 
| 
      
 806 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 807 
     | 
    
         
            +
              <wsdl:message name="FECAESolicitarSoapOut">
         
     | 
| 
      
 808 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAESolicitarResponse" />
         
     | 
| 
      
 809 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 810 
     | 
    
         
            +
              <wsdl:message name="FECompTotXRequestSoapIn">
         
     | 
| 
      
 811 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompTotXRequest" />
         
     | 
| 
      
 812 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 813 
     | 
    
         
            +
              <wsdl:message name="FECompTotXRequestSoapOut">
         
     | 
| 
      
 814 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompTotXRequestResponse" />
         
     | 
| 
      
 815 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 816 
     | 
    
         
            +
              <wsdl:message name="FEDummySoapIn">
         
     | 
| 
      
 817 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEDummy" />
         
     | 
| 
      
 818 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 819 
     | 
    
         
            +
              <wsdl:message name="FEDummySoapOut">
         
     | 
| 
      
 820 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEDummyResponse" />
         
     | 
| 
      
 821 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 822 
     | 
    
         
            +
              <wsdl:message name="FECompUltimoAutorizadoSoapIn">
         
     | 
| 
      
 823 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompUltimoAutorizado" />
         
     | 
| 
      
 824 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 825 
     | 
    
         
            +
              <wsdl:message name="FECompUltimoAutorizadoSoapOut">
         
     | 
| 
      
 826 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompUltimoAutorizadoResponse" />
         
     | 
| 
      
 827 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 828 
     | 
    
         
            +
              <wsdl:message name="FECompConsultarSoapIn">
         
     | 
| 
      
 829 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompConsultar" />
         
     | 
| 
      
 830 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 831 
     | 
    
         
            +
              <wsdl:message name="FECompConsultarSoapOut">
         
     | 
| 
      
 832 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECompConsultarResponse" />
         
     | 
| 
      
 833 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 834 
     | 
    
         
            +
              <wsdl:message name="FECAEARegInformativoSoapIn">
         
     | 
| 
      
 835 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEARegInformativo" />
         
     | 
| 
      
 836 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 837 
     | 
    
         
            +
              <wsdl:message name="FECAEARegInformativoSoapOut">
         
     | 
| 
      
 838 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEARegInformativoResponse" />
         
     | 
| 
      
 839 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 840 
     | 
    
         
            +
              <wsdl:message name="FECAEASolicitarSoapIn">
         
     | 
| 
      
 841 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASolicitar" />
         
     | 
| 
      
 842 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 843 
     | 
    
         
            +
              <wsdl:message name="FECAEASolicitarSoapOut">
         
     | 
| 
      
 844 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASolicitarResponse" />
         
     | 
| 
      
 845 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 846 
     | 
    
         
            +
              <wsdl:message name="FECAEASinMovimientoConsultarSoapIn">
         
     | 
| 
      
 847 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASinMovimientoConsultar" />
         
     | 
| 
      
 848 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 849 
     | 
    
         
            +
              <wsdl:message name="FECAEASinMovimientoConsultarSoapOut">
         
     | 
| 
      
 850 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASinMovimientoConsultarResponse" />
         
     | 
| 
      
 851 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 852 
     | 
    
         
            +
              <wsdl:message name="FECAEASinMovimientoInformarSoapIn">
         
     | 
| 
      
 853 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASinMovimientoInformar" />
         
     | 
| 
      
 854 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 855 
     | 
    
         
            +
              <wsdl:message name="FECAEASinMovimientoInformarSoapOut">
         
     | 
| 
      
 856 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEASinMovimientoInformarResponse" />
         
     | 
| 
      
 857 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 858 
     | 
    
         
            +
              <wsdl:message name="FECAEAConsultarSoapIn">
         
     | 
| 
      
 859 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEAConsultar" />
         
     | 
| 
      
 860 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 861 
     | 
    
         
            +
              <wsdl:message name="FECAEAConsultarSoapOut">
         
     | 
| 
      
 862 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FECAEAConsultarResponse" />
         
     | 
| 
      
 863 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 864 
     | 
    
         
            +
              <wsdl:message name="FEParamGetCotizacionSoapIn">
         
     | 
| 
      
 865 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetCotizacion" />
         
     | 
| 
      
 866 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 867 
     | 
    
         
            +
              <wsdl:message name="FEParamGetCotizacionSoapOut">
         
     | 
| 
      
 868 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetCotizacionResponse" />
         
     | 
| 
      
 869 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 870 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposTributosSoapIn">
         
     | 
| 
      
 871 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposTributos" />
         
     | 
| 
      
 872 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 873 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposTributosSoapOut">
         
     | 
| 
      
 874 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposTributosResponse" />
         
     | 
| 
      
 875 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 876 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposMonedasSoapIn">
         
     | 
| 
      
 877 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposMonedas" />
         
     | 
| 
      
 878 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 879 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposMonedasSoapOut">
         
     | 
| 
      
 880 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposMonedasResponse" />
         
     | 
| 
      
 881 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 882 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposIvaSoapIn">
         
     | 
| 
      
 883 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposIva" />
         
     | 
| 
      
 884 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 885 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposIvaSoapOut">
         
     | 
| 
      
 886 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposIvaResponse" />
         
     | 
| 
      
 887 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 888 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposOpcionalSoapIn">
         
     | 
| 
      
 889 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposOpcional" />
         
     | 
| 
      
 890 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 891 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposOpcionalSoapOut">
         
     | 
| 
      
 892 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposOpcionalResponse" />
         
     | 
| 
      
 893 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 894 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposConceptoSoapIn">
         
     | 
| 
      
 895 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposConcepto" />
         
     | 
| 
      
 896 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 897 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposConceptoSoapOut">
         
     | 
| 
      
 898 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposConceptoResponse" />
         
     | 
| 
      
 899 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 900 
     | 
    
         
            +
              <wsdl:message name="FEParamGetPtosVentaSoapIn">
         
     | 
| 
      
 901 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetPtosVenta" />
         
     | 
| 
      
 902 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 903 
     | 
    
         
            +
              <wsdl:message name="FEParamGetPtosVentaSoapOut">
         
     | 
| 
      
 904 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetPtosVentaResponse" />
         
     | 
| 
      
 905 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 906 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposCbteSoapIn">
         
     | 
| 
      
 907 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposCbte" />
         
     | 
| 
      
 908 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 909 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposCbteSoapOut">
         
     | 
| 
      
 910 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposCbteResponse" />
         
     | 
| 
      
 911 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 912 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposDocSoapIn">
         
     | 
| 
      
 913 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposDoc" />
         
     | 
| 
      
 914 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 915 
     | 
    
         
            +
              <wsdl:message name="FEParamGetTiposDocSoapOut">
         
     | 
| 
      
 916 
     | 
    
         
            +
                <wsdl:part name="parameters" element="tns:FEParamGetTiposDocResponse" />
         
     | 
| 
      
 917 
     | 
    
         
            +
              </wsdl:message>
         
     | 
| 
      
 918 
     | 
    
         
            +
              <wsdl:portType name="ServiceSoap">
         
     | 
| 
      
 919 
     | 
    
         
            +
                <wsdl:operation name="FECAESolicitar">
         
     | 
| 
      
 920 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Solicitud de Código de Autorización Electrónico (CAE)</wsdl:documentation>
         
     | 
| 
      
 921 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAESolicitarSoapIn" />
         
     | 
| 
      
 922 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAESolicitarSoapOut" />
         
     | 
| 
      
 923 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 924 
     | 
    
         
            +
                <wsdl:operation name="FECompTotXRequest">
         
     | 
| 
      
 925 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retorna la cantidad maxima de registros que puede tener una invocacion al metodo FECAESolicitar / FECAEARegInformativo </wsdl:documentation>
         
     | 
| 
      
 926 
     | 
    
         
            +
                  <wsdl:input message="tns:FECompTotXRequestSoapIn" />
         
     | 
| 
      
 927 
     | 
    
         
            +
                  <wsdl:output message="tns:FECompTotXRequestSoapOut" />
         
     | 
| 
      
 928 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 929 
     | 
    
         
            +
                <wsdl:operation name="FEDummy">
         
     | 
| 
      
 930 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Metodo dummy para verificacion de funcionamiento</wsdl:documentation>
         
     | 
| 
      
 931 
     | 
    
         
            +
                  <wsdl:input message="tns:FEDummySoapIn" />
         
     | 
| 
      
 932 
     | 
    
         
            +
                  <wsdl:output message="tns:FEDummySoapOut" />
         
     | 
| 
      
 933 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 934 
     | 
    
         
            +
                <wsdl:operation name="FECompUltimoAutorizado">
         
     | 
| 
      
 935 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retorna el ultimo comprobante autorizado para el tipo de comprobante / cuit / punto de venta ingresado</wsdl:documentation>
         
     | 
| 
      
 936 
     | 
    
         
            +
                  <wsdl:input message="tns:FECompUltimoAutorizadoSoapIn" />
         
     | 
| 
      
 937 
     | 
    
         
            +
                  <wsdl:output message="tns:FECompUltimoAutorizadoSoapOut" />
         
     | 
| 
      
 938 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 939 
     | 
    
         
            +
                <wsdl:operation name="FECompConsultar">
         
     | 
| 
      
 940 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Consulta Comprobante emitido y su código.</wsdl:documentation>
         
     | 
| 
      
 941 
     | 
    
         
            +
                  <wsdl:input message="tns:FECompConsultarSoapIn" />
         
     | 
| 
      
 942 
     | 
    
         
            +
                  <wsdl:output message="tns:FECompConsultarSoapOut" />
         
     | 
| 
      
 943 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 944 
     | 
    
         
            +
                <wsdl:operation name="FECAEARegInformativo">
         
     | 
| 
      
 945 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Rendición de comprobantes asociados a un CAEA.</wsdl:documentation>
         
     | 
| 
      
 946 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAEARegInformativoSoapIn" />
         
     | 
| 
      
 947 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAEARegInformativoSoapOut" />
         
     | 
| 
      
 948 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 949 
     | 
    
         
            +
                <wsdl:operation name="FECAEASolicitar">
         
     | 
| 
      
 950 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Solicitud de Código de Autorización Electrónico Anticipado (CAEA)</wsdl:documentation>
         
     | 
| 
      
 951 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAEASolicitarSoapIn" />
         
     | 
| 
      
 952 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAEASolicitarSoapOut" />
         
     | 
| 
      
 953 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 954 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoConsultar">
         
     | 
| 
      
 955 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Consulta CAEA informado como sin movimientos.</wsdl:documentation>
         
     | 
| 
      
 956 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAEASinMovimientoConsultarSoapIn" />
         
     | 
| 
      
 957 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAEASinMovimientoConsultarSoapOut" />
         
     | 
| 
      
 958 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 959 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoInformar">
         
     | 
| 
      
 960 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Informa CAEA sin movimientos.</wsdl:documentation>
         
     | 
| 
      
 961 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAEASinMovimientoInformarSoapIn" />
         
     | 
| 
      
 962 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAEASinMovimientoInformarSoapOut" />
         
     | 
| 
      
 963 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 964 
     | 
    
         
            +
                <wsdl:operation name="FECAEAConsultar">
         
     | 
| 
      
 965 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Consultar CAEA emitidos.</wsdl:documentation>
         
     | 
| 
      
 966 
     | 
    
         
            +
                  <wsdl:input message="tns:FECAEAConsultarSoapIn" />
         
     | 
| 
      
 967 
     | 
    
         
            +
                  <wsdl:output message="tns:FECAEAConsultarSoapOut" />
         
     | 
| 
      
 968 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 969 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetCotizacion">
         
     | 
| 
      
 970 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera la cotizacion de la moneda consultada y su  fecha </wsdl:documentation>
         
     | 
| 
      
 971 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetCotizacionSoapIn" />
         
     | 
| 
      
 972 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetCotizacionSoapOut" />
         
     | 
| 
      
 973 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 974 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposTributos">
         
     | 
| 
      
 975 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado de los diferente tributos que pueden ser utilizados  en el servicio de autorizacion</wsdl:documentation>
         
     | 
| 
      
 976 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposTributosSoapIn" />
         
     | 
| 
      
 977 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposTributosSoapOut" />
         
     | 
| 
      
 978 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 979 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposMonedas">
         
     | 
| 
      
 980 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado de monedas utilizables en servicio de autorización</wsdl:documentation>
         
     | 
| 
      
 981 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposMonedasSoapIn" />
         
     | 
| 
      
 982 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposMonedasSoapOut" />
         
     | 
| 
      
 983 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 984 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposIva">
         
     | 
| 
      
 985 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado  de Tipos de Iva utilizables en servicio de autorización.</wsdl:documentation>
         
     | 
| 
      
 986 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposIvaSoapIn" />
         
     | 
| 
      
 987 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposIvaSoapOut" />
         
     | 
| 
      
 988 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 989 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposOpcional">
         
     | 
| 
      
 990 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado de identificadores para los campos Opcionales</wsdl:documentation>
         
     | 
| 
      
 991 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposOpcionalSoapIn" />
         
     | 
| 
      
 992 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposOpcionalSoapOut" />
         
     | 
| 
      
 993 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 994 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposConcepto">
         
     | 
| 
      
 995 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado  de identificadores para el campo Concepto.</wsdl:documentation>
         
     | 
| 
      
 996 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposConceptoSoapIn" />
         
     | 
| 
      
 997 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposConceptoSoapOut" />
         
     | 
| 
      
 998 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 999 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetPtosVenta">
         
     | 
| 
      
 1000 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado de puntos de venta registrados y su estado</wsdl:documentation>
         
     | 
| 
      
 1001 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetPtosVentaSoapIn" />
         
     | 
| 
      
 1002 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetPtosVentaSoapOut" />
         
     | 
| 
      
 1003 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1004 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposCbte">
         
     | 
| 
      
 1005 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado  de Tipos de Comprobantes utilizables en servicio de autorización.</wsdl:documentation>
         
     | 
| 
      
 1006 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposCbteSoapIn" />
         
     | 
| 
      
 1007 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposCbteSoapOut" />
         
     | 
| 
      
 1008 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1009 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposDoc">
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Recupera el listado  de Tipos de Documentos utilizables en servicio de autorización.</wsdl:documentation>
         
     | 
| 
      
 1011 
     | 
    
         
            +
                  <wsdl:input message="tns:FEParamGetTiposDocSoapIn" />
         
     | 
| 
      
 1012 
     | 
    
         
            +
                  <wsdl:output message="tns:FEParamGetTiposDocSoapOut" />
         
     | 
| 
      
 1013 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1014 
     | 
    
         
            +
              </wsdl:portType>
         
     | 
| 
      
 1015 
     | 
    
         
            +
              <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
         
     | 
| 
      
 1016 
     | 
    
         
            +
                <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
         
     | 
| 
      
 1017 
     | 
    
         
            +
                <wsdl:operation name="FECAESolicitar">
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAESolicitar" style="document" />
         
     | 
| 
      
 1019 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1020 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1021 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1023 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1025 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1026 
     | 
    
         
            +
                <wsdl:operation name="FECompTotXRequest">
         
     | 
| 
      
 1027 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompTotXRequest" style="document" />
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1029 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1031 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1032 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1033 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1034 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1035 
     | 
    
         
            +
                <wsdl:operation name="FEDummy">
         
     | 
| 
      
 1036 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEDummy" style="document" />
         
     | 
| 
      
 1037 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1038 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1039 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1040 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1041 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1042 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1043 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1044 
     | 
    
         
            +
                <wsdl:operation name="FECompUltimoAutorizado">
         
     | 
| 
      
 1045 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompUltimoAutorizado" style="document" />
         
     | 
| 
      
 1046 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1047 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1048 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1050 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1052 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1053 
     | 
    
         
            +
                <wsdl:operation name="FECompConsultar">
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompConsultar" style="document" />
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1056 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1057 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1058 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1059 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1061 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1062 
     | 
    
         
            +
                <wsdl:operation name="FECAEARegInformativo">
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEARegInformativo" style="document" />
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1065 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1066 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1067 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1068 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1070 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1071 
     | 
    
         
            +
                <wsdl:operation name="FECAEASolicitar">
         
     | 
| 
      
 1072 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASolicitar" style="document" />
         
     | 
| 
      
 1073 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1074 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1075 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1076 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1077 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1078 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1079 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1080 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoConsultar">
         
     | 
| 
      
 1081 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASinMovimientoConsultar" style="document" />
         
     | 
| 
      
 1082 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1083 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1084 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1085 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1086 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1087 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1088 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1089 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoInformar">
         
     | 
| 
      
 1090 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASinMovimientoInformar" style="document" />
         
     | 
| 
      
 1091 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1092 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1093 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1094 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1095 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1096 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1097 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1098 
     | 
    
         
            +
                <wsdl:operation name="FECAEAConsultar">
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEAConsultar" style="document" />
         
     | 
| 
      
 1100 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1101 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1102 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1103 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1104 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1105 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1106 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1107 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetCotizacion">
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetCotizacion" style="document" />
         
     | 
| 
      
 1109 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1110 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1111 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1112 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1113 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1114 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1115 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1116 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposTributos">
         
     | 
| 
      
 1117 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposTributos" style="document" />
         
     | 
| 
      
 1118 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1119 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1120 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1121 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1122 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1123 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1124 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1125 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposMonedas">
         
     | 
| 
      
 1126 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposMonedas" style="document" />
         
     | 
| 
      
 1127 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1128 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1129 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1131 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1133 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1134 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposIva">
         
     | 
| 
      
 1135 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposIva" style="document" />
         
     | 
| 
      
 1136 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1137 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1138 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1139 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1140 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1141 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1142 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1143 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposOpcional">
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposOpcional" style="document" />
         
     | 
| 
      
 1145 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1146 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1147 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1148 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1149 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1150 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1151 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1152 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposConcepto">
         
     | 
| 
      
 1153 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposConcepto" style="document" />
         
     | 
| 
      
 1154 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1155 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1157 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1158 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1159 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1160 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1161 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetPtosVenta">
         
     | 
| 
      
 1162 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetPtosVenta" style="document" />
         
     | 
| 
      
 1163 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1165 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1166 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1169 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1170 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposCbte">
         
     | 
| 
      
 1171 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposCbte" style="document" />
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1175 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1176 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1177 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1178 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1179 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposDoc">
         
     | 
| 
      
 1180 
     | 
    
         
            +
                  <soap:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposDoc" style="document" />
         
     | 
| 
      
 1181 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1182 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1183 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1184 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1185 
     | 
    
         
            +
                    <soap:body use="literal" />
         
     | 
| 
      
 1186 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1187 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1188 
     | 
    
         
            +
              </wsdl:binding>
         
     | 
| 
      
 1189 
     | 
    
         
            +
              <wsdl:binding name="ServiceSoap12" type="tns:ServiceSoap">
         
     | 
| 
      
 1190 
     | 
    
         
            +
                <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
         
     | 
| 
      
 1191 
     | 
    
         
            +
                <wsdl:operation name="FECAESolicitar">
         
     | 
| 
      
 1192 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAESolicitar" style="document" />
         
     | 
| 
      
 1193 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1194 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1195 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1196 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1197 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1198 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1199 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1200 
     | 
    
         
            +
                <wsdl:operation name="FECompTotXRequest">
         
     | 
| 
      
 1201 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompTotXRequest" style="document" />
         
     | 
| 
      
 1202 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1204 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1205 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1206 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1208 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1209 
     | 
    
         
            +
                <wsdl:operation name="FEDummy">
         
     | 
| 
      
 1210 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEDummy" style="document" />
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1212 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1213 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1214 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1216 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1217 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1218 
     | 
    
         
            +
                <wsdl:operation name="FECompUltimoAutorizado">
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompUltimoAutorizado" style="document" />
         
     | 
| 
      
 1220 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1221 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1222 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1223 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1224 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1225 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1226 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1227 
     | 
    
         
            +
                <wsdl:operation name="FECompConsultar">
         
     | 
| 
      
 1228 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECompConsultar" style="document" />
         
     | 
| 
      
 1229 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1230 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1231 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1232 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1233 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1234 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1235 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1236 
     | 
    
         
            +
                <wsdl:operation name="FECAEARegInformativo">
         
     | 
| 
      
 1237 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEARegInformativo" style="document" />
         
     | 
| 
      
 1238 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1239 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1240 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1241 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1242 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1243 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1244 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1245 
     | 
    
         
            +
                <wsdl:operation name="FECAEASolicitar">
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASolicitar" style="document" />
         
     | 
| 
      
 1247 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1248 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1249 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1250 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1251 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1252 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1253 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1254 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoConsultar">
         
     | 
| 
      
 1255 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASinMovimientoConsultar" style="document" />
         
     | 
| 
      
 1256 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1257 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1258 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1259 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1260 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1261 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1262 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1263 
     | 
    
         
            +
                <wsdl:operation name="FECAEASinMovimientoInformar">
         
     | 
| 
      
 1264 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEASinMovimientoInformar" style="document" />
         
     | 
| 
      
 1265 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1266 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1267 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1268 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1269 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1270 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1271 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1272 
     | 
    
         
            +
                <wsdl:operation name="FECAEAConsultar">
         
     | 
| 
      
 1273 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FECAEAConsultar" style="document" />
         
     | 
| 
      
 1274 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1275 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1276 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1277 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1278 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1279 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1280 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1281 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetCotizacion">
         
     | 
| 
      
 1282 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetCotizacion" style="document" />
         
     | 
| 
      
 1283 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1284 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1287 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1288 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1289 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1290 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposTributos">
         
     | 
| 
      
 1291 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposTributos" style="document" />
         
     | 
| 
      
 1292 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1293 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1294 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1295 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1296 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1297 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1298 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1299 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposMonedas">
         
     | 
| 
      
 1300 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposMonedas" style="document" />
         
     | 
| 
      
 1301 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1302 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1303 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1304 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1305 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1306 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1307 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1308 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposIva">
         
     | 
| 
      
 1309 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposIva" style="document" />
         
     | 
| 
      
 1310 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1311 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1312 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1313 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1314 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1316 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1317 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposOpcional">
         
     | 
| 
      
 1318 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposOpcional" style="document" />
         
     | 
| 
      
 1319 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1320 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1321 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1322 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1323 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1324 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1325 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1326 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposConcepto">
         
     | 
| 
      
 1327 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposConcepto" style="document" />
         
     | 
| 
      
 1328 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1329 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1330 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1331 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1332 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1333 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1334 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1335 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetPtosVenta">
         
     | 
| 
      
 1336 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetPtosVenta" style="document" />
         
     | 
| 
      
 1337 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1338 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1339 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1340 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1341 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1342 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1343 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1344 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposCbte">
         
     | 
| 
      
 1345 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposCbte" style="document" />
         
     | 
| 
      
 1346 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1347 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1348 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1349 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1350 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1351 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1352 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1353 
     | 
    
         
            +
                <wsdl:operation name="FEParamGetTiposDoc">
         
     | 
| 
      
 1354 
     | 
    
         
            +
                  <soap12:operation soapAction="http://ar.gov.afip.dif.FEV1/FEParamGetTiposDoc" style="document" />
         
     | 
| 
      
 1355 
     | 
    
         
            +
                  <wsdl:input>
         
     | 
| 
      
 1356 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1357 
     | 
    
         
            +
                  </wsdl:input>
         
     | 
| 
      
 1358 
     | 
    
         
            +
                  <wsdl:output>
         
     | 
| 
      
 1359 
     | 
    
         
            +
                    <soap12:body use="literal" />
         
     | 
| 
      
 1360 
     | 
    
         
            +
                  </wsdl:output>
         
     | 
| 
      
 1361 
     | 
    
         
            +
                </wsdl:operation>
         
     | 
| 
      
 1362 
     | 
    
         
            +
              </wsdl:binding>
         
     | 
| 
      
 1363 
     | 
    
         
            +
              <wsdl:service name="Service">
         
     | 
| 
      
 1364 
     | 
    
         
            +
                <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Web Service orientado  al  servicio  de Facturacion electronica RG2485 V1</wsdl:documentation>
         
     | 
| 
      
 1365 
     | 
    
         
            +
                <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
         
     | 
| 
      
 1366 
     | 
    
         
            +
                  <soap:address location="http://wswhomo.afip.gov.ar/wsfev1/service.asmx" />
         
     | 
| 
      
 1367 
     | 
    
         
            +
                </wsdl:port>
         
     | 
| 
      
 1368 
     | 
    
         
            +
                <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
         
     | 
| 
      
 1369 
     | 
    
         
            +
                  <soap12:address location="http://wswhomo.afip.gov.ar/wsfev1/service.asmx" />
         
     | 
| 
      
 1370 
     | 
    
         
            +
                </wsdl:port>
         
     | 
| 
      
 1371 
     | 
    
         
            +
              </wsdl:service>
         
     | 
| 
      
 1372 
     | 
    
         
            +
            </wsdl:definitions>
         
     |