in reply to soap::wsdl question

Inside SOAP\WSDL.pm, find this line:

my $parser = SOAP::WSDL::Expat::WSDLParser->new();

Right after that line, add this:

$parser->parse_uri($wsdl_of{ $ident });

The package seems to be buggy, you may encounter other issues...

Peter (Guo) Pei

Replies are listed 'Best First'.
Re^2: soap::wsdl question
by Anonymous Monk on Apr 13, 2010 at 02:10 UTC
    SOAP::WSDL->new isn't part of the API anymore ....

      Thanks guys for the replies! I think I might try to avoid this module then. Besides Soap::Lite(has limited functionality for loading wsdl docs) and Soap::WSDL, are there any other perl modules that can successfully load wsdl documents? I tried searching cpan.org and none really stood out.. thanks!!

        Hi,
        you could try nuSoap from sourceforge.net
        Paul