Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees

Author

       Replace the whitespace by @ for E-Mail Address.

        Martin Kutter E<lt>martin.kutter fen-net.deE<gt>

Bugs And Limitations

       •   Ignores all namespaces

       •   Does not handle mixed content

       •   The SOAP header is ignored

Description

       Real fast expat based SOAP message parser.

       See SOAP::WSDL::Manual::Parser for details.

   Skippingunwanteditems
       Sometimes there's unnecessary information transported in SOAP messages.

       To skip XML nodes (including all child nodes), just edit the type map for the message, set the type map
       entry to '__SKIP__', and comment out all child elements you want to skip.

Name

       SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees

Repository Information

        $Id: MessageParser.pm 851 2009-05-15 22:45:18Z kutterma $

        $LastChangedDate: 2009-05-16 00:45:18 +0200 (Sa, 16. Mai 2009) $
        $LastChangedRevision: 851 $
        $LastChangedBy: kutterma $

        $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Expat/MessageParser.pm $

perl v5.36.0                                       2022-10-14              SOAP::WSDL::Expat::MessageParser(3pm)

Synopsis

        my $parser = SOAP::WSDL::Expat::MessageParser->new({
           class_resolver => 'My::Resolver'
        });
        $parser->parse( $xml );
        my $obj = $parser->get_data();

See Also