Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
How about posting some code? – mallix Feb 1 at 11:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.