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


Back to Top


NAME

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

Back to Top


SYNOPSIS

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

Back to Top


DESCRIPTION

Real fast expat based SOAP message parser.

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

Skipping unwanted items

Sometimes there's unneccessary 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.

Back to Top


Bugs and Limitations

Back to Top


AUTHOR

Replace the whitespace by @ for E-Mail Address.

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

Back to Top


LICENSE AND COPYRIGHT

Copyright 2004-2007 Martin Kutter.

This file is part of SOAP-WSDL. You may distribute/modify it under the same terms as perl itself

Back to Top


Repository information

 $Id: MessageParser.pm 728 2008-07-13 19:28:50Z kutterma $
 $LastChangedDate: 2008-07-13 21:28:50 +0200 (So, 13 Jul 2008) $
 $LastChangedRevision: 728 $
 $LastChangedBy: kutterma $
 $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Expat/MessageParser.pm $

Back to Top

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