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


SOAP-WSDL documentation  | view source Contained in the SOAP-WSDL distribution.

Index


NAME

Top

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

SYNOPSIS

Top

 my $lwp = LWP::UserAgent->new();

 my $parser = SOAP::WSDL::Expat::MessageParser->new({
    class_resolver => 'My::Resolver'
 });
 my $chunk_parser = $parser->init();
 # process response while it comes in, trying to read 32k chunks.
 $lwp->request( $request, sub { $chunk_parser->parse_more($_[0]) } , 32468 );
 $chunk_parser->parse_done();

 my $obj = $parser->get_data();

DESCRIPTION

Top

ExpatNB based parser for parsing huge documents.

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

Bugs and Limitations

Top

See SOAP::WSDL::Expat::MessageParser

AUTHOR

Top

Martin Kutter <martin.kutter fen-net.de>

LICENSE AND COPYRIGHT

Top

REPOSITORY INFORMATION

Top

 $Rev: 851 $
 $LastChangedBy: kutterma $
 $Id: MessageStreamParser.pm 851 2009-05-15 22:45:18Z kutterma $
 $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Expat/MessageStreamParser.pm $


SOAP-WSDL documentation  | view source Contained in the SOAP-WSDL distribution.