http://qs321.pair.com?node_id=391612


in reply to WSDL generation for a SOAP::Lite server

The problem with WSDL::Generator is actually a class it uses, Class::Hook. The problem is specified in the Generator.pm perldoc:

=head1 CAVEATS

WSDL doesn't works only on perl 5.6 and not 5.8. UNIVERSAL::AUTOLOAD is broken in perl 5.8 and it is used by Class::Hook upon wich WSDL::Generator depends.

So, you can get it to work, presumably, by switching to perl 5.6. There is a more specific explanation of the problem (and a possible solution here)

Celebrate Intellectual Diversity

  • Comment on Re: WSDL generation for a SOAP::Lite server

Replies are listed 'Best First'.
Re^2: WSDL generation for a SOAP::Lite server
by StoneTable (Beadle) on Sep 17, 2004 at 02:54 UTC
    I may have to give 5.6 a try. I applied the patch in the link, which fixes the segfault with Class::Hook, but the WSDL:Generator test fails.