Jump to content

i'm having this error wsdl error: HTTP ERROR: server failed to send headers


japuentem

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.