SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees |
SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees
my $parser = SOAP::WSDL::Expat::MessageParser->new({ class_resolver => 'My::Resolver' }); $parser->parse( $xml ); my $obj = $parser->get_data();
Real fast expat based SOAP message parser.
See the SOAP::WSDL::Manual::Parser manpage for details.
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.
Replace the whitespace by @ for E-Mail Address.
Martin Kutter E<lt>martin.kutter fen-net.deE<gt>
Copyright 2004-2007 Martin Kutter.
This file is part of SOAP-WSDL. You may distribute/modify it under the same terms as perl itself
$Id: $
$LastChangedDate: 2008-04-25 15:17:08 +0200 (Fr, 25 Apr 2008) $ $LastChangedRevision: 626 $ $LastChangedBy: kutterma $
$HeadURL: http://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Expat/MessageParser.pm $
SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees |