Subject: | Please pass additional arguments to new() on to SOAP::Lite |
Hello,
First of all, thank you very much for publishing JIRA::Client, it has made my life a lot easier :-)
In my organisation we are behind an HTTP firewall. It would be very helpful if additional
arguments passed to JIRA::Client->new() were passed on to SOAP::Lite. For example:
my $jira = JIRA::Client->new(
'http://jira.myorg.co.uk',
'nicholas.humfrey', 'adfadgadfg',
proxy => ['http' => 'http://www-cache.myorg.co.uk/']
);
It would also be handy if this was mentioned in the documentation.
This is the modification that I have applied to my copy of JIRA/Client.pm:
sub new {
my ($class, $base_url, $user, $pass, %args) = @_;
my $soap = SOAP::Lite->proxy("$base_url/rpc/soap/jirasoapservice-v2?wsdl", %args);
Thanks,
nick.