Dear,
I'm trying to consume a WS from a PHP application.
My code is as follows:
<?php
$lib_nusoap='libs/nusoap/nusoap.php';
require_once($lib_nusoap);
$all_info = array();
$client = new nusoap_client('localhost:7001/miservicio/servicio?WSDL', true);
$all_info[]=$client->call('buscaAlumnoByRut', array("rut"=>"12345678"));
$err = $client->getError();
var_dump($all_info);
and the answer is: Internal Server ErrorBEA-380001
<soapenv:Envelope xmlns:soapenv="http://schemas.xmloap.og/soap/enelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>BEA-380001: Internal Server Error</faultstring>
<detail>
<con:fault xmlns:con="http://www.bea.com/wi/sb/contex">
<con:errorCode>BEA-380001</con:errorCode>
<con:reason>Internal Server Error</con:reason>
<con:location>
<con:node>RouteTo_DatosBasicosBS</con:node>
<con:path>response-pipeline</con:path>
</con:location>
</con:fault>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
I remain attentive!