ServiceNow-SOAP
view release on metacpan or search on metacpan
lib/ServiceNow/SOAP.pm view on Meta::CPAN
1;
=head1 PROXY
You may have trouble using the SOAP API if you are running Perl behind
a proxy server.
The easiest solution is to configure the proxy with environment variables
as in this example.
use ServiceNow::SOAP;
$ENV{HTTP_PROXY} = "http://my.proxy.server";
$ENV{HTTPS_PROXY} = $ENV{HTTP_PROXY};
$ENV{PERL_LWP_ENV_PROXY} = 1;
my $sn = ServiceNow($instance, $username, $password);
This works because ServiceNow::SOAP is built on top of SOAP::Lite
which is built on top of LWP.
For more information refer to:
L<http://search.cpan.org/dist/libwww-perl/lib/LWP.pm#ENVIRONMENT>
=head1 DIAGNOSTICS
( run in 0.343 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )