php - SOAP and NTLM Authentication between Debian an IIS Server -
i have problem soap authentication in php. have check everywhere answer without success. i hope 'll able me here ! so, here deal. my php application server debian 6 apache2 , web service based on iis server. both servers inside our company network. for connection , authentication use class find on web : http://tcsoftware.net/blog/2011/08/php-soapclient-authentication/ here code using class : <?php define('curlopt_certinfo',1); ini_set("max_execution_time",120); ini_set('default_socket_timeout', 120); ini_set("soap.wsdl_cache_enabled", "0"); ini_set('soap.wsdl_cache_ttl',0); include('./soapclientauth.php'); //wsdl $soapurl = "http://myapplicationadress/ws/web100t/patient_identite_chargerparid.wsdl"; $soapparameters = array( 'login' => 'anadlogin', 'password' => 'theadpassword', ...