这段代码:
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));
产生以下警告
在 /home/user/perl5/lib/perl5/SOAP/Lite.pm 第 3396 行的字符串 eq 中使用未初始化的值 $ns。
我应该怎么做才能在不抑制警告的情况下摆脱它?