Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Morning guys and gals, I know how to access web serivces by using SOAP::Lite, so that's not the problem. But some of the web services I needed can only be accessed through https. Can I still do this through SOAP::Lite? If someone can show me a quick example, that will be really great. Thanks in advance.

Replies are listed 'Best First'.
Re: access web service through https
by ForgotPasswordAgain (Vicar) on Oct 15, 2006 at 18:17 UTC

    By typing

    soap::lite https

    into google, you'll see that the first result shows that during installation of SOAP::Lite, you have the option of installing an HTTPS client.

Re: access web service through https
by spatterson (Pilgrim) on Oct 16, 2006 at 10:10 UTC
    Even simpler, if you've got SOAP::Lite & (I think) Crypt::SSLEay installed, you can give SOAP::Lite an https service url:
    use SOAP::Lite; my $soap = SOAP::Lite ->service('https://www.somewhere.com/soap/wsdl');

    just another cpan module author