in reply to Re: SOAP::Lite - Insecure dependency in eval while running with -T
in thread SOAP::Lite - Insecure dependency in eval while running with -T
I "solved" the problem just by adding
my $result = $1 if ($self->generate_stub($_) =~ m{^(.+)}s);before
eval $result or Carp::croak "Bad stub: $@";which was previously
eval $self->generate_stub($_) or Carp::croak "Bad stub: $@";and it works now. Not really elegant, but I need this urgently so it should do. Alfter that I'm getting this warning message:
could not find ParserDetails.ini in /usr/lib/perl5/site_perl/5.8.8/XML/SAX
Is this related?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SOAP::Lite - Insecure dependency in eval while running with -T
by stepamil (Acolyte) on Mar 29, 2011 at 15:52 UTC |