arca.rb 1.0.0
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.
- checksums.yaml +7 -0
- data/.devcontainer/Dockerfile +8 -0
- data/.devcontainer/devcontainer.json +12 -0
- data/.github/dependabot.yml +12 -0
- data/.github/workflows/ci.yml +16 -0
- data/.github/workflows/release.yml +37 -0
- data/.gitignore +8 -0
- data/.mise.toml +2 -0
- data/.rubocop.yml +8 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +19 -0
- data/CONTRIBUTING.md +48 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +209 -0
- data/Rakefile +10 -0
- data/SECURITY.md +14 -0
- data/arca.gemspec +40 -0
- data/bin/console +7 -0
- data/lib/arca/client.rb +29 -0
- data/lib/arca/core_ext/hash.rb +13 -0
- data/lib/arca/errors/error.rb +13 -0
- data/lib/arca/errors/network_error.rb +15 -0
- data/lib/arca/errors/response_error.rb +18 -0
- data/lib/arca/errors/server_error.rb +6 -0
- data/lib/arca/persona_service_a100.rb +51 -0
- data/lib/arca/persona_service_a4.rb +34 -0
- data/lib/arca/persona_service_a5.rb +46 -0
- data/lib/arca/type_conversions.rb +44 -0
- data/lib/arca/version.rb +5 -0
- data/lib/arca/w_cons_declaracion.rb +66 -0
- data/lib/arca/ws_constancia_inscripcion.rb +34 -0
- data/lib/arca/wsaa.rb +140 -0
- data/lib/arca/wscdc.rb +149 -0
- data/lib/arca/wsfe.rb +205 -0
- data/lib/arca/wsfecred.rb +438 -0
- data/lib/arca/wsrgiva.rb +72 -0
- data/lib/arca.rb +31 -0
- data/test/arca/client_test.rb +43 -0
- data/test/arca/core_ext/hash_test.rb +15 -0
- data/test/arca/persona_service_a100_test.rb +45 -0
- data/test/arca/persona_service_a4_test.rb +31 -0
- data/test/arca/persona_service_a5_test.rb +31 -0
- data/test/arca/test.crt +19 -0
- data/test/arca/test.key +28 -0
- data/test/arca/type_conversions_test.rb +43 -0
- data/test/arca/w_cons_declaracion_test.rb +86 -0
- data/test/arca/ws_constancia_inscripcion_test.rb +87 -0
- data/test/arca/wsaa_test.rb +80 -0
- data/test/arca/wscdc_test.rb +103 -0
- data/test/arca/wsfe_test.rb +319 -0
- data/test/arca/wsfecred_test.rb +162 -0
- data/test/arca/wsrgiva_test.rb +91 -0
- data/test/fixtures/wconsdeclaracion/detallada_estado/success.xml +24 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_fecha_success.xml +39 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_inexistente.xml +16 -0
- data/test/fixtures/wconsdeclaracion/detallada_lista_declaraciones/por_id_success.xml +29 -0
- data/test/fixtures/wconsdeclaracion/dummy/success.xml +12 -0
- data/test/fixtures/wconsdeclaracion/wconsdeclaracion.wsdl +2976 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/failure.xml +35 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/fault.xml +8 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/get_persona/success.xml +53 -0
- data/test/fixtures/ws_sr_constancia_inscripcion/ws_constancia_inscripcion.wsdl +230 -0
- data/test/fixtures/ws_sr_padron_a100/company_types/success.xml +23 -0
- data/test/fixtures/ws_sr_padron_a100/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a100/jurisdictions/success.xml +31 -0
- data/test/fixtures/ws_sr_padron_a100/public_organisms/success.xml +23 -0
- data/test/fixtures/ws_sr_padron_a100.wsdl +125 -0
- data/test/fixtures/ws_sr_padron_a4/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a4/get_persona/success.xml +133 -0
- data/test/fixtures/ws_sr_padron_a4.wsdl +229 -0
- data/test/fixtures/ws_sr_padron_a5/dummy/success.xml +11 -0
- data/test/fixtures/ws_sr_padron_a5/get_persona/success.xml +62 -0
- data/test/fixtures/ws_sr_padron_a5.wsdl +283 -0
- data/test/fixtures/wsaa/login_cms/fault.xml +12 -0
- data/test/fixtures/wsaa/login_cms/success.xml +16 -0
- data/test/fixtures/wsaa/login_cms/token_expirado.xml +14 -0
- data/test/fixtures/wsaa/wsaa.wsdl +103 -0
- data/test/fixtures/wscdc/comprobante_constatar/success.xml +22 -0
- data/test/fixtures/wscdc/comprobante_constatar/with_errors.xml +28 -0
- data/test/fixtures/wscdc/comprobante_dummy/success.xml +11 -0
- data/test/fixtures/wscdc/comprobantes_modalidad_consultar/success.xml +22 -0
- data/test/fixtures/wscdc/comprobantes_tipo_consultar/success.xml +22 -0
- data/test/fixtures/wscdc/documentos_tipo_consultar/success.xml +16 -0
- data/test/fixtures/wscdc/opcionales_tipo_consultar/success.xml +14 -0
- data/test/fixtures/wscdc/wscdc.wsdl +305 -0
- data/test/fixtures/wsfe/fe_comp_consultar/success.xml +41 -0
- data/test/fixtures/wsfe/fe_comp_tot_x_request/success.xml +9 -0
- data/test/fixtures/wsfe/fe_comp_ultimo_autorizado/success.xml +11 -0
- data/test/fixtures/wsfe/fe_dummy/success.xml +11 -0
- data/test/fixtures/wsfe/fe_param_get_cotizacion/dolar.xml +13 -0
- data/test/fixtures/wsfe/fe_param_get_cotizacion/inexistente.xml +14 -0
- data/test/fixtures/wsfe/fe_param_get_ptos_venta/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_1_error.xml +14 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/failure_2_errors.xml +18 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_cbte/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_concepto/success.xml +17 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_doc/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_iva/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_monedas/success.xml +22 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_opcional/success.xml +16 -0
- data/test/fixtures/wsfe/fe_param_get_tipos_tributos/success.xml +16 -0
- data/test/fixtures/wsfe/fecae_solicitar/autorizacion_1_cbte.xml +30 -0
- data/test/fixtures/wsfe/fecae_solicitar/autorizacion_2_cbtes.xml +41 -0
- data/test/fixtures/wsfe/fecae_solicitar/dos_observaciones.xml +40 -0
- data/test/fixtures/wsfe/fecae_solicitar/una_observacion.xml +36 -0
- data/test/fixtures/wsfe/fecaea_consultar/success.xml +17 -0
- data/test/fixtures/wsfe/fecaea_reg_informativo/informe_rtdo_parcial.xml +45 -0
- data/test/fixtures/wsfe/fecaea_sin_movimiento_informar/success.xml +12 -0
- data/test/fixtures/wsfe/fecaea_solicitar/caea_ya_otorgado.xml +18 -0
- data/test/fixtures/wsfe/fecaea_solicitar/error_distinto.xml +18 -0
- data/test/fixtures/wsfe/fecaea_solicitar/success.xml +17 -0
- data/test/fixtures/wsfe/wsfe.wsdl +1372 -0
- data/test/fixtures/wsfecred/aceptar_f_e_cred/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_comprobantes/success.xml +17 -0
- data/test/fixtures/wsfecred/consultar_cta_cte/success.xml +13 -0
- data/test/fixtures/wsfecred/consultar_ctas_ctes/success.xml +16 -0
- data/test/fixtures/wsfecred/consultar_tipos_formas_cancelacion/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_motivos_rechazo/success.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_retenciones/failure.xml +14 -0
- data/test/fixtures/wsfecred/consultar_tipos_retenciones/success.xml +14 -0
- data/test/fixtures/wsfecred/dummy/success.xml +11 -0
- data/test/fixtures/wsfecred/wsfecred.wsdl +147 -0
- data/test/fixtures/wsrgiva/consultar_constancia_por_lote/one_error.xml +14 -0
- data/test/fixtures/wsrgiva/consultar_constancia_por_lote/success.xml +26 -0
- data/test/fixtures/wsrgiva/dummy/success.xml +11 -0
- data/test/fixtures/wsrgiva/wsrgiva.wsdl +118 -0
- data/test/support/savon_extensions.rb +43 -0
- data/test/test_helper.rb +44 -0
- metadata +319 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAESolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAESolicitarResult>
|
|
5
|
+
<FeCabResp>
|
|
6
|
+
<Cuit>20123456783</Cuit>
|
|
7
|
+
<PtoVta>1</PtoVta>
|
|
8
|
+
<CbteTipo>1</CbteTipo>
|
|
9
|
+
<FchProceso>20110115</FchProceso>
|
|
10
|
+
<CantReg>2</CantReg>
|
|
11
|
+
<Resultado>A</Resultado>
|
|
12
|
+
<Reproceso>N</Reproceso>
|
|
13
|
+
</FeCabResp>
|
|
14
|
+
<FeDetResp>
|
|
15
|
+
<FECAEDetResponse>
|
|
16
|
+
<Concepto>1</Concepto>
|
|
17
|
+
<DocTipo>80</DocTipo>
|
|
18
|
+
<DocNro>30521189203</DocNro>
|
|
19
|
+
<CbteDesde>5</CbteDesde>
|
|
20
|
+
<CbteHasta>5</CbteHasta>
|
|
21
|
+
<CbteFch>20110113</CbteFch>
|
|
22
|
+
<Resultado>A</Resultado>
|
|
23
|
+
<CAE>61033008894096</CAE>
|
|
24
|
+
<CAEFchVto>20110123</CAEFchVto>
|
|
25
|
+
</FECAEDetResponse>
|
|
26
|
+
<FECAEDetResponse>
|
|
27
|
+
<Concepto>1</Concepto>
|
|
28
|
+
<DocTipo>80</DocTipo>
|
|
29
|
+
<DocNro>30521189203</DocNro>
|
|
30
|
+
<CbteDesde>6</CbteDesde>
|
|
31
|
+
<CbteHasta>6</CbteHasta>
|
|
32
|
+
<CbteFch>20110113</CbteFch>
|
|
33
|
+
<Resultado>A</Resultado>
|
|
34
|
+
<CAE>61033008894101</CAE>
|
|
35
|
+
<CAEFchVto>20110123</CAEFchVto>
|
|
36
|
+
</FECAEDetResponse>
|
|
37
|
+
</FeDetResp>
|
|
38
|
+
</FECAESolicitarResult>
|
|
39
|
+
</FECAESolicitarResponse>
|
|
40
|
+
</soap:Body>
|
|
41
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAESolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAESolicitarResult>
|
|
5
|
+
<FeCabResp>
|
|
6
|
+
<Cuit>20123456783</Cuit>
|
|
7
|
+
<PtoVta>1</PtoVta>
|
|
8
|
+
<CbteTipo>1</CbteTipo>
|
|
9
|
+
<FchProceso>20110114</FchProceso>
|
|
10
|
+
<CantReg>1</CantReg>
|
|
11
|
+
<Resultado>R</Resultado>
|
|
12
|
+
<Reproceso>N</Reproceso>
|
|
13
|
+
</FeCabResp>
|
|
14
|
+
<FeDetResp>
|
|
15
|
+
<FECAEDetResponse>
|
|
16
|
+
<Concepto>1</Concepto>
|
|
17
|
+
<DocTipo>80</DocTipo>
|
|
18
|
+
<DocNro>30521189203</DocNro>
|
|
19
|
+
<CbteDesde>3</CbteDesde>
|
|
20
|
+
<CbteHasta>3</CbteHasta>
|
|
21
|
+
<CbteFch>20110113</CbteFch>
|
|
22
|
+
<Resultado>R</Resultado>
|
|
23
|
+
<Observaciones>
|
|
24
|
+
<Obs>
|
|
25
|
+
<Code>10048</Code>
|
|
26
|
+
<Msg>Msg 1</Msg>
|
|
27
|
+
</Obs>
|
|
28
|
+
<Obs>
|
|
29
|
+
<Code>10018</Code>
|
|
30
|
+
<Msg>Msg 2</Msg>
|
|
31
|
+
</Obs>
|
|
32
|
+
</Observaciones>
|
|
33
|
+
<CAE/>
|
|
34
|
+
<CAEFchVto/>
|
|
35
|
+
</FECAEDetResponse>
|
|
36
|
+
</FeDetResp>
|
|
37
|
+
</FECAESolicitarResult>
|
|
38
|
+
</FECAESolicitarResponse>
|
|
39
|
+
</soap:Body>
|
|
40
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAESolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAESolicitarResult>
|
|
5
|
+
<FeCabResp>
|
|
6
|
+
<Cuit>20123456783</Cuit>
|
|
7
|
+
<PtoVta>1</PtoVta>
|
|
8
|
+
<CbteTipo>1</CbteTipo>
|
|
9
|
+
<FchProceso>20110114</FchProceso>
|
|
10
|
+
<CantReg>1</CantReg>
|
|
11
|
+
<Resultado>R</Resultado>
|
|
12
|
+
<Reproceso>N</Reproceso>
|
|
13
|
+
</FeCabResp>
|
|
14
|
+
<FeDetResp>
|
|
15
|
+
<FECAEDetResponse>
|
|
16
|
+
<Concepto>1</Concepto>
|
|
17
|
+
<DocTipo>80</DocTipo>
|
|
18
|
+
<DocNro>30521189203</DocNro>
|
|
19
|
+
<CbteDesde>3</CbteDesde>
|
|
20
|
+
<CbteHasta>3</CbteHasta>
|
|
21
|
+
<CbteFch>20110113</CbteFch>
|
|
22
|
+
<Resultado>R</Resultado>
|
|
23
|
+
<Observaciones>
|
|
24
|
+
<Obs>
|
|
25
|
+
<Code>10048</Code>
|
|
26
|
+
<Msg>Msg 1</Msg>
|
|
27
|
+
</Obs>
|
|
28
|
+
</Observaciones>
|
|
29
|
+
<CAE/>
|
|
30
|
+
<CAEFchVto/>
|
|
31
|
+
</FECAEDetResponse>
|
|
32
|
+
</FeDetResp>
|
|
33
|
+
</FECAESolicitarResult>
|
|
34
|
+
</FECAESolicitarResponse>
|
|
35
|
+
</soap:Body>
|
|
36
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEAConsultarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEAConsultarResult>
|
|
5
|
+
<ResultGet>
|
|
6
|
+
<CAEA>21043476341977</CAEA>
|
|
7
|
+
<Periodo>201102</Periodo>
|
|
8
|
+
<Orden>1</Orden>
|
|
9
|
+
<FchVigDesde>20110201</FchVigDesde>
|
|
10
|
+
<FchVigHasta>20110215</FchVigHasta>
|
|
11
|
+
<FchTopeInf>20110317</FchTopeInf>
|
|
12
|
+
<FchProceso>20110127124928</FchProceso>
|
|
13
|
+
</ResultGet>
|
|
14
|
+
</FECAEAConsultarResult>
|
|
15
|
+
</FECAEAConsultarResponse>
|
|
16
|
+
</soap:Body>
|
|
17
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEARegInformativoResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEARegInformativoResult>
|
|
5
|
+
<FeCabResp>
|
|
6
|
+
<Cuit>20123456783</Cuit>
|
|
7
|
+
<PtoVta>3</PtoVta>
|
|
8
|
+
<CbteTipo>1</CbteTipo>
|
|
9
|
+
<FchProceso>20110127</FchProceso>
|
|
10
|
+
<CantReg>2</CantReg>
|
|
11
|
+
<Resultado>A</Resultado>
|
|
12
|
+
<Reproceso>N</Reproceso>
|
|
13
|
+
</FeCabResp>
|
|
14
|
+
<FeDetResp>
|
|
15
|
+
<FECAEADetResponse>
|
|
16
|
+
<Concepto>1</Concepto>
|
|
17
|
+
<DocTipo>80</DocTipo>
|
|
18
|
+
<DocNro>30521189203</DocNro>
|
|
19
|
+
<CbteDesde>1</CbteDesde>
|
|
20
|
+
<CbteHasta>1</CbteHasta>
|
|
21
|
+
<CbteFch>20110201</CbteFch>
|
|
22
|
+
<Resultado>A</Resultado>
|
|
23
|
+
<CAEA>21043476341977</CAEA>
|
|
24
|
+
</FECAEADetResponse>
|
|
25
|
+
<FECAEADetResponse>
|
|
26
|
+
<Concepto>1</Concepto>
|
|
27
|
+
<DocTipo>80</DocTipo>
|
|
28
|
+
<DocNro>30521189203</DocNro>
|
|
29
|
+
<CbteDesde>2</CbteDesde>
|
|
30
|
+
<CbteHasta>2</CbteHasta>
|
|
31
|
+
<CbteFch>20110201</CbteFch>
|
|
32
|
+
<Resultado>R</Resultado>
|
|
33
|
+
<Observaciones>
|
|
34
|
+
<Obs>
|
|
35
|
+
<Code>724</Code>
|
|
36
|
+
<Msg>Msg</Msg>
|
|
37
|
+
</Obs>
|
|
38
|
+
</Observaciones>
|
|
39
|
+
<CAEA>21043476341977</CAEA>
|
|
40
|
+
</FECAEADetResponse>
|
|
41
|
+
</FeDetResp>
|
|
42
|
+
</FECAEARegInformativoResult>
|
|
43
|
+
</FECAEARegInformativoResponse>
|
|
44
|
+
</soap:Body>
|
|
45
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEASinMovimientoInformarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEASinMovimientoInformarResult>
|
|
5
|
+
<CAEA>21043476341977</CAEA>
|
|
6
|
+
<FchProceso>20110202</FchProceso>
|
|
7
|
+
<PtoVta>3</PtoVta>
|
|
8
|
+
<Resultado>A</Resultado>
|
|
9
|
+
</FECAEASinMovimientoInformarResult>
|
|
10
|
+
</FECAEASinMovimientoInformarResponse>
|
|
11
|
+
</soap:Body>
|
|
12
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEASolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEASolicitarResult>
|
|
5
|
+
<ResultGet>
|
|
6
|
+
<Periodo>0</Periodo>
|
|
7
|
+
<Orden>0</Orden>
|
|
8
|
+
</ResultGet>
|
|
9
|
+
<Errors>
|
|
10
|
+
<Err>
|
|
11
|
+
<Code>15008</Code>
|
|
12
|
+
<Msg>Existe un CAEA otorgado para la CUIT solicitante con el periodo y orden informado. Consultar el metodo FECAEAConsultar.</Msg>
|
|
13
|
+
</Err>
|
|
14
|
+
</Errors>
|
|
15
|
+
</FECAEASolicitarResult>
|
|
16
|
+
</FECAEASolicitarResponse>
|
|
17
|
+
</soap:Body>
|
|
18
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEASolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEASolicitarResult>
|
|
5
|
+
<ResultGet>
|
|
6
|
+
<Periodo>0</Periodo>
|
|
7
|
+
<Orden>0</Orden>
|
|
8
|
+
</ResultGet>
|
|
9
|
+
<Errors>
|
|
10
|
+
<Err>
|
|
11
|
+
<Code>15007</Code>
|
|
12
|
+
<Msg>Orden incorrecto.</Msg>
|
|
13
|
+
</Err>
|
|
14
|
+
</Errors>
|
|
15
|
+
</FECAEASolicitarResult>
|
|
16
|
+
</FECAEASolicitarResponse>
|
|
17
|
+
</soap:Body>
|
|
18
|
+
</soap:Envelope>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
2
|
+
<soap:Body>
|
|
3
|
+
<FECAEASolicitarResponse xmlns="http://ar.gov.afip.dif.FEV1/">
|
|
4
|
+
<FECAEASolicitarResult>
|
|
5
|
+
<ResultGet>
|
|
6
|
+
<CAEA>21043476341977</CAEA>
|
|
7
|
+
<Periodo>201102</Periodo>
|
|
8
|
+
<Orden>1</Orden>
|
|
9
|
+
<FchVigDesde>20110201</FchVigDesde>
|
|
10
|
+
<FchVigHasta>20110215</FchVigHasta>
|
|
11
|
+
<FchTopeInf>20110317</FchTopeInf>
|
|
12
|
+
<FchProceso>20110127124928</FchProceso>
|
|
13
|
+
</ResultGet>
|
|
14
|
+
</FECAEASolicitarResult>
|
|
15
|
+
</FECAEASolicitarResponse>
|
|
16
|
+
</soap:Body>
|
|
17
|
+
</soap:Envelope>
|