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
    There is no "carp" module :) use Carp::Always; is shorter to type

      Yes, it should have been use Carp;. It's not the first time I missed that capital, and I doubt it will be the last. :)

      I didn't know about Carp::Always, but it sounds useful. Thanks!

      Hi, I've got the same problem. Did you get a solution for the error? Are you trying to use a web service that is hosted by an IBM i machine (aka, AS400)? Please, let me know if you found a solution, it would help me so much. Thank you, Esdras