Estoy intentando hacer una conexión con NuSOAP, pero el servicio al que intento acceder tiene una autenticación NTLM, y por tanto estoy teniendo esta respuesta:
Código:
el código es sencillo, pero sin embargo está fallandoResponse HTTP/1.1 401 Unauthorized Content-Length: 1733 Date: Thu, 07 Feb 2008 21:54:06 GMT Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/6.0 WWW-Authenticate: Negotiate WWW-Authenticate: NTLM X-Powered-By: ASP.NET X-AspNet-Version: 1.1.4322 Cache-Control: private
Código:
Alguien es capáz de ayudarme? muchas gracias require_once('nusoap.php'); $parameters = array('pEmail'=>'[email protected]', 'pDescripcion'=>'asdas', 'pTelefono'=>'1561651'); $soapclient = new nusoap_client($url); $soapclient->setCredentials($user, $pass, "ntlm"); $err = $soapclient->getError(); if ($err) { echo '<h2>Constructor error</h2><pre>' . $err . '</pre>'; echo '<h2>Debug</h2><pre>' . htmlspecialchars($soapclient->getDebug(), ENT_QUOTES) . '</pre>'; exit(); } echo $soapclient->call($methodName, $parameters);