This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtest.php
executable file
·55 lines (50 loc) · 1.77 KB
/
test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
include_once (__DIR__ . '/wsfev1.php');
include_once (__DIR__ . '/wsfexv1.php');
include_once (__DIR__ . '/wssrpadrona5.php');
include_once (__DIR__ . '/wssrpadrona13.php');
include_once (__DIR__ . '/wsaa.php');
/**
* Este script sirve para probar el webservice
* Hay que indicar el CUIT con el cual vamos a realizar las pruebas
* Recordar tener todos los servicios de homologación habilitados en AFIP
* Ejecutar desde consola con "php test.php"
*/
$CUIT = "XXXXXXXXXXX"; // CUIT del emisor
$MODO = Wsaa::MODO_HOMOLOGACION;
echo "----------Script de prueba de AFIP WSFEV1----------\n";
try {
$afip = new Wsfev1($CUIT,$MODO);
$result = $afip->dummy();
print_r($result);
} catch (Exception $e) {
echo 'Falló la ejecución: ' . $e->getMessage();
}
echo "--------------Ejecución WSFEV1 finalizada-----------------\n";
echo "----------Script de prueba de AFIP WSFEXV1----------\n";
try {
$afip = new Wsfexv1($CUIT,$MODO);
$result = $afip->dummy();
print_r($result);
} catch (Exception $e) {
echo 'Falló la ejecución: ' . $e->getMessage();
}
echo "--------------Ejecución WSFEXV1 finalizada-----------------\n";
echo "----------Script de prueba de AFIP WsSrPadronA5----------\n";
try {
$afip = new WsSrPadronA5($CUIT,$MODO);
$result = $afip->dummy();
print_r($result);
} catch (Exception $e) {
echo 'Falló la ejecución: ' . $e->getMessage();
}
echo "--------------Ejecución WsSrPadronA5 finalizada-----------------\n";
echo "----------Script de prueba de AFIP WsSrPadronA13----------\n";
try {
$afip = new WsSrPadronA13($CUIT,$MODO);
$result = $afip->dummy();
print_r($result);
} catch (Exception $e) {
echo 'Falló la ejecución: ' . $e->getMessage();
}
echo "--------------Ejecución WsSrPadronA13 finalizada-----------------\n";