Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 78608
Status: resolved
Priority: 0/
Queue: SOAP-Lite

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in:
  • 0.712
  • 0.715
Fixed in: (no value)



Subject: Documentation for "+trace"
The documentation page for SOAP::Trace suggests: Or, the following will also do the trick: use SOAP::Lite +trace; Unfortunately, this does not work with "use strict": $ perl -e 'use strict; use SOAP::Lite +trace;' Bareword "trace" not allowed while "strict subs" in use at -e line 1. Execution of -e aborted due to compilation errors. So probably should not be suggested at all. Regards, Slaven
From: raherh [...] gmail.com
On Fri Jul 27 09:29:00 2012, SREZIC wrote: Show quoted text
> The documentation page for SOAP::Trace suggests: > > Or, the following will also do the trick: > > use SOAP::Lite +trace; > > Unfortunately, this does not work with "use strict": > > $ perl -e 'use strict; use SOAP::Lite +trace;' > Bareword "trace" not allowed while "strict subs" in use at -e line 1. > Execution of -e aborted due to compilation errors. > > So probably should not be suggested at all. > > Regards, > Slaven
use SOAP::Lite +trace => 'all'; is same and works with strict pragma. Radek
Fixed in SVN in rev417. Thanks for reporting. Martin
already released