Jump to content

japuentem

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

japuentem's Achievements

Newbie

Newbie (1/5)

0

Reputation

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