GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SOAP::WSDL::Factory::Deserializer(3) User Contributed Perl Documentation SOAP::WSDL::Factory::Deserializer(3)

SOAP::WSDL::Factory::Deserializer - Factory for retrieving Deserializer objects

 # from SOAP::WSDL::Client:
 $deserializer = SOAP::WSDL::Factory::Deserializer->get_deserializer({
     soap_version => $soap_version,
     class_resolver => $class_resolver,
 });

 # in deserializer class:
 package MyWickedDeserializer;
 use SOAP::WSDL::Factory::Deserializer;

 # register class as deserializer for SOAP1.2 messages
 SOAP::WSDL::Factory::Deserializer->register( '1.2' , __PACKAGE__ );

SOAP::WSDL::Factory::Deserializer serves as factory for retrieving deserializer objects for SOAP::WSDL.

The actual work is done by specific deserializer classes.

SOAP::WSDL::Deserializer tries to load one of the following classes:

The class registered for the scheme via register()

By default, SOAP::WSDL::Deserializer::XSD is registered for SOAP1.1 messages.

 SOAP::WSDL::Deserializer->register('1.1', 'MyWickedDeserializer');

Globally registers a class for use as deserializer class.

Returns an object of the deserializer class for this endpoint.

Deserializer classes may register with SOAP::WSDL::Factory::Deserializer.

Registering a deserializer class with SOAP::WSDL::Factory::Deserializer is done by executing the following code where $version is the SOAP version the class should be used for, and $class is the class name.

 SOAP::WSDL::Factory::Deserializer->register( $version, $class);

To auto-register your transport class on loading, execute register() in your tranport class (see SYNOPSIS above).

Deserializer modules must be named equal to the deserializer class they contain. There can only be one deserializer class per deserializer module.

Deserializer classes must implement the following methods:
  • new

    Constructor.

  • deserialize

    Deserialize data from XML to arbitrary formats.

    deserialize() must return a fault indicating that deserializing failed if any error is encountered during the process of deserializing the XML message.

    The following positional parameters are passed to the deserialize method:

     $content   - the xml message
        
  • generate_fault

    Generate a fault in the supported format. The following named parameters are passed as a single hash ref:

     code       - The fault code, e.g. 'soap:Server' or the like
     role       - The fault role (actor in SOAP1.1)
     message    - The fault message (faultstring in SOAP1.1)
        

Copyright 2007 Martin Kutter. All rights reserved.

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

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

 $Rev: 176 $
 $LastChangedBy: kutterma $
 $Id: Serializer.pm 176 2007-08-31 15:28:29Z kutterma $
 $HeadURL: https://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL/Factory/Serializer.pm $
2020-01-20 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.