You may encounter the following error in your Perl ZXTM Control API scripts:
use_prefix has been deprecated. if you wish to turn off or on
the use of a default namespace, then please use either ns(uri)
or default_ns(uri) at /usr/share/perl5/SOAP/Lite.pm line 858
The SOAP::Lite perl interface changed on version 0.65_5. Earlier perl code samples used the 'URI' method, but this has now been deprecated.
If you are using a recent SOAP:Lite toolkit, use the 'ns' method instead of the 'uri':
my $conn = SOAP::Lite
-> ns('http://soap.zeus.com/zxtm/1.0/VirtualServer/')
-> proxy("$admin_server/soap");
The following document: uri and use_prefix deprecated in next release describes the change in more detail.