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

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.