I've implemented for my app a web service who was working fine until now.
For the moment my application is the soap client and server because i'm still at development level.
Since i have activate the module mod_auth_sspi.so and parameter sso authentification for my application. And now i have this error message :
PHP Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from
What i have to do to make this working with this configuration. Is there something to do on the sso configuration or i have to change my soap call.
Here the change i made in the httpd.conf
LoadModule sspi_auth_module modules/mod_auth_sspi.so
<Directory "C:/wamp/www/MyApp/">
AllowOverride None
Options None
Order allow,deny
Allow from all
AuthName "MPM"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain domaine.com
SSPIOfferBasic On
SSPIPerRequestAuth Off
SSPIOmitDomain off
require valid-user
</Directory>
Thks
=>Ok I 've fix the problem . I now need to call my web service with authentication like this
$service = new SoapClient ($wsdl, array(
"login" => 'userDomaine',
"password" => 'passwordDomaine');
But it's now a issue for me because now other client who use my WebService will need authentication