Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

soap::wsdl::expat::messageparser(3pm) [debian man page]

SOAP::WSDL::Expat::MessageParser(3pm)			User Contributed Perl Documentation		     SOAP::WSDL::Expat::MessageParser(3pm)

NAME
SOAP::WSDL::Expat::MessageParser - Convert SOAP messages to custom object trees SYNOPSIS
my $parser = SOAP::WSDL::Expat::MessageParser->new({ class_resolver => 'My::Resolver' }); $parser->parse( $xml ); my $obj = $parser->get_data(); DESCRIPTION
Real fast expat based SOAP message parser. See SOAP::WSDL::Manual::Parser for details. Skipping unwanted items 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. Bugs and Limitations o Ignores all namespaces o Does not handle mixed content o The SOAP header is ignored AUTHOR
Replace the whitespace by @ for E-Mail Address. Martin Kutter E<lt>martin.kutter fen-net.deE<gt> 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 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.10.1 2010-12-21 SOAP::WSDL::Expat::MessageParser(3pm)

Check Out this Related Man Page

SOAP::WSDL::Deserializer::XSD(3pm)			User Contributed Perl Documentation			SOAP::WSDL::Deserializer::XSD(3pm)

NAME
SOAP::WSDL::Deserializer::XSD - Deserializer SOAP messages into SOAP::WSDL::XSD::Typelib:: objects DESCRIPTION
Default deserializer for SOAP::WSDL::Client and interface classes generated by SOAP::WSDL. Converts SOAP messages to SOAP::WSDL::XSD::Typlib:: based objects. Needs a class_resolver typemap either passed by the generated interface or user-provided. SOAP::WSDL::Deserializer classes implement the API described in SOAP::WSDL::Factory::Deserializer. USAGE
Usually you don't need to do anything to use this package - it's the default deserializer for SOAP::WSDL::Client and interface classes generated by SOAP::WSDL. If you want to use the XSD serializer from SOAP::WSDL, set the outputtree() property and provide a class_resolver. OPTIONS
o strict Enables/disables strict XML processing. Strict processing is enabled by default. To disable strict XML processing pass the following to the constructor or use the "set_strict" method: strict => 0 METHODS
deserialize Deserializes the message. generate_fault Generates a SOAP::WSDL::SOAP::Typelib::Fault11 object and returns it. set_strict Enable/disable strict XML parsing. Default is enabled. 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. AUTHOR
Martin Kutter <martin.kutter fen-net.de> REPOSITORY INFORMATION
$Rev: 851 $ $LastChangedBy: kutterma $ $Id: XSD.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/Deserializer/XSD.pm $ perl v5.10.1 2010-12-21 SOAP::WSDL::Deserializer::XSD(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing Blank Lines

Hi i have the below lines from a file 7538 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036 PRGRP450800PERSONAL SOAP AND BATH ADDITIV 7036... (3 Replies)
Discussion started by: dhanamurthy
3 Replies

2. Shell Programming and Scripting

XML Log Parsing

I have a log file that is around 300 MB of data having continours soap responses as shown below( I have attached only one sample SOAP). I would require to have the following extracted and written onto a new file. timestamp WebPartId bus:block bus:unblock endpt:operation Please help me. ... (3 Replies)
Discussion started by: pk_eee
3 Replies

3. Shell Programming and Scripting

SOAP module in perl

Hi, I have executed the below perl code to check whether SOAP module is working or not. #!/usr/bin/perl use SOAP::Transport::HTTP; print "Hai"; But I got the below error message: Can't locate SOAP/Transport/HTTP.pm in @INC (@INC contains:... (2 Replies)
Discussion started by: liyakathali
2 Replies

4. UNIX for Beginners Questions & Answers

Convert a txt file to a CSV file

Hi , I have a Txt file which consist of 1000's of SOAP request and response and i want the file to be converted to a csv file like column a should have a soap request and column b should have the soap response . can someone assist me in achieving this please ? Thanks (2 Replies)
Discussion started by: kumarm8
2 Replies