21/07/2013, 17:42
|
| | Fecha de Ingreso: julio-2013
Mensajes: 5
Antigüedad: 11 años, 5 meses Puntos: 1 | |
Respuesta: Consumir desde php - webservice en Java solución.
<?php
include('config/nusoap.php');
try {
$wsdl_url = 'http://localhost:8080/WService/WSCliente?WSDL';
$client = new SOAPClient($wsdl_url);
$return = $client->Listar();
print_r($return);
} catch (Exception $e) {
echo "Exception occured: " . $e;
}
?> |