I am trying to consume some SOAP Web Service from perl with SOAP::Lite. my script looks like :
use SOAP::Lite;
my $url1 = http://myUsername:myPassword@myProxyServer:port;
my $url2 = https: //myUsername:myPassword@server.wsdl;
print SOAP::Lite
-> proxy($url1)
-> service($url2)
->myMethod("foo", "bar");
and i get this error :
Server description
https://myUsername:myPassword@server.wsdl
can't be loaded: 500 Can't connect tohttp://myUsername:myPassword@myProxyServer:port
. The $url1 and $url2 urls are correct and the myMethod method exist in wsdl file.
Any help will be apreciated.
Regards