This code:
my $url = 'http://172.27.1.250:8080/X/services/XSOAP';
my $soap = SOAP::Lite->new(
service=> 'http://172.27.1.250:8080/X/services/XSOAP?wsdl',
proxy => $url
);
$soap->autotype(0)->readable(1);
$soap->ns('http://www.example.org/X/');
my $som = $soap->call('serviceX',
SOAP::Data->name('serviceXRequest')->value($value));
Generates following warning
Use of uninitialized value $ns in string eq at /home/user/perl5/lib/perl5/SOAP/Lite.pm line 3396.
What should I do get rid of it without supressing warnings?