japuentem Posted April 15, 2008 Share Posted April 15, 2008 i need help to know why i'm having this error. This is the code that i'm using <?php require_once('lib/nusoap.php'); $parametros = array("File" => "pedido.xml"); $rutaServidor = 'http://localhost:9080/charlyWebService/WEB-INF/wsdl/LeeXmlAutodoc.wsdl'; $soapclient = new soapclient($rutaServidor, true); if ($sError = $soapclient->getError()) { echo "No se pudo realizar la operación [" . $sError . "]"; die(); } echo $soapclient->call('leeXML',$parametros); if ($soapclient->fault) { echo 'No se pudo completar la operación'; die(); } else { $sError = $soapclient->getError(); // Hay algun error ? if ($sError) { // Si echo 'Error.....' . $sError; die(); } } ?> Please help me Thanks in advance Link to comment https://forums.phpfreaks.com/topic/101252-im-having-this-error-wsdl-error-http-error-server-failed-to-send-headers/ Share on other sites More sharing options...
amites Posted April 15, 2008 Share Posted April 15, 2008 that code is a small piece of a much larger group of files, no way to know what is going wrong without looking at the various functions going on if you wrote this yourself then feel free to post up some more chunks, if you are getting this from another source then you will have more luck asking the author for help, or hiring someone to clean it up for you Link to comment https://forums.phpfreaks.com/topic/101252-im-having-this-error-wsdl-error-http-error-server-failed-to-send-headers/#findComment-518022 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.