Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/07/2013, 17:42
Dcwilson
 
Fecha de Ingreso: julio-2013
Mensajes: 5
Antigüedad: 10 años, 9 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;
}
?>