I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-11-07 11:39:57.244305-08 by mkutter in response to 13538
Re: Problems in authentication while accessing WSDL from a Sharepoint
Hi,

you need to find auth (out ;-) which authentication methods the server supports. Therefore look into the responses' HTTP Header (you may use any client without credentials to get that response).

You'll see something like
WWW-Authenticate: Basic realm="RealmName"

Then you need to use the authentication method appropriate for the server (being a Sharepoint site it's probably either Basic or NTLM - Basic is much easier to implement but insecure unless you're communicating over HTTPS).

See SOAP::WSDL::Manual::Cookbook on how to do provide credentials for these authentication methods.

Martin
Direct Responses: Write a response