J
J Krugman
I came across the following code snippet in the documentation for
the Perl module SOAP::Lite:
use SOAP::Lite +autodispatch =>
uri => 'http://www.soaplite.com/Temperatures',
proxy => 'http://services.soaplite.com/temper.cgi';
I know that '=>' is equivalent to ',' (except that '=>' somehow
turns the preceding token into a literal string), but what about
the '+' before autodispatch? And what about the comma-separated
list that follows it? I can see how 'uri' and 'proxy' could be
subs exported by SOAP::Lite, but this couldn't be the case something
like '+autodispatch' or 'http://www.soaplite.com/Temperatures'
since these strings are not a valid Perl identifiers.
I've looked for answers to these questions in various manpages
(SOAP::Lite, Exporter, import, use, perlmod) without any luck.
Any help would be much appreciated.
jill
the Perl module SOAP::Lite:
use SOAP::Lite +autodispatch =>
uri => 'http://www.soaplite.com/Temperatures',
proxy => 'http://services.soaplite.com/temper.cgi';
I know that '=>' is equivalent to ',' (except that '=>' somehow
turns the preceding token into a literal string), but what about
the '+' before autodispatch? And what about the comma-separated
list that follows it? I can see how 'uri' and 'proxy' could be
subs exported by SOAP::Lite, but this couldn't be the case something
like '+autodispatch' or 'http://www.soaplite.com/Temperatures'
since these strings are not a valid Perl identifiers.
I've looked for answers to these questions in various manpages
(SOAP::Lite, Exporter, import, use, perlmod) without any luck.
Any help would be much appreciated.
jill