http://www.perlmonks.org?node_id=571597


in reply to Perl SOAP and SSL, HHTP Basic Auth

I'm not sure, but this is what i think you mean:
use SOAP::Lite +trace => [qw(debug)]; SOAP::Lite->new( uri => 'http://www.blah.nl/blah', # the namespace proxy => 'https://www.blah.nl/servive/to/call', on_action => sub {sprintf 'http://www.blah.nl/action'}) #soapacti +on header
"We all agree on the necessity of compromise. We just can't agree on when it's necessary to compromise." - Larry Wall.

Replies are listed 'Best First'.
Re^2: Perl SOAP and SSL, HHTP Basic Auth
by Anonymous Monk on Sep 07, 2006 at 05:12 UTC

    Actually it doesn't matter whether we use your way or my stub way, they are the same. Now I am realizing that it might has something to do with the fact that I don't have CRYPT::SSLeay installed.

    I run through ActiveState ppm, but they don't have this module listed, too bad.

      That shouldn't be a problem as you can install Crypt::SSLeay from an alternative repository. At a command prompt do:

      C:\> ppm rep add winnipeg http://theoryx5.uwinnipeg.ca/ppms/ C:\> ppm install Crypt-SSLeay

      /J\

        That's great!! I will do so tonight.