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


in reply to Re^4: Soap::lite - https ?
in thread Soap::lite - https ?


Yes it is possible when you define server code like this:
my $daemon = SOAP::Transport::HTTP::Daemon
->new( LocalPort => DAEMON_PORT,
Listen => 1,
SSL_use_cert => 1,
SSL_key_file => PRIVATE_KEY_PATH,
SSL_cert_file => CERTIFICATE_PATH,
Reuse => 1)
-> dispatch_to('Handler');

Off course, you have to install HTTP::Daemon::SSL, generate a certificate and a private key before using this code...

It's a few late but it should be usefull for other poeples like me, a week ago...