|
Hello,
I need to access a web service that requires BASE64 encrypted password based authentication. I have never written script for SOAP module.
use SOAP::Lite;
print SOAP::Lite -> uri('xxxx')
-> proxy('https://username:password@url')
-> functionname('parameter')
-> result;
it gives me an error
500 Can't locate object method "new" via package "LWP::Protocol::https::Socket"
at ws.pl line 2
i really dont have no idea what to specifically ask can anybody guide me?
|
|
|
I'm gonna guess that you are missing the Crypt::SSLeay module that is needed to support https. You'll need to install it on your computer.
If you have perl configured properly you can probably type:
perl -MCPAN -e 'install Crypt::SSLeay'
semper fi...
|
|
|
|
|
|
|
// |