in reply to Found unrecognised attribute in SOAP WSD
It looks like something in your code is trying to do something that SOAP::WSDL doesn't like. If you get a stack trace, it should show you where in your code the problem is. Put the following under your other use statements:
use Carp; $SIG{__DIE__} = sub {confess "@_";}; $SIG{__WARN__} = sub {confess "@_";};
I don't have SOAP::WSDL installed, so I can't run this myself. The error message should help you track the problem down.
Update: carp changed to Carp. Thanks Anonymous Monk!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Found unrecognised attribute in SOAP WSD
by Anonymous Monk on Aug 06, 2013 at 07:12 UTC | |
by nevdka (Pilgrim) on Aug 06, 2013 at 11:32 UTC | |
by ebs_perl (Initiate) on Aug 06, 2013 at 21:36 UTC | |
by Anonymous Monk on Aug 06, 2013 at 23:47 UTC |