#!/usr/bin/perl use strict; use SOAP::Lite; my $soap = SOAP::Lite->new( proxy => [ 'https://:/', 'credentails' => [ ':', # host:port 'My Realm', # realm 'username', 'password' ] ] ); my $som = $soap->RetrieveList(); die $som->faultstring if ($som->fault); print $som->results, "\n";