SOAPjr::message - base class for SOAPjr::request and SOAPjr::response objects


SOAPjr documentation Contained in the SOAPjr distribution.

Index


Code Index:

NAME

Top

SOAPjr::message - base class for SOAPjr::request and SOAPjr::response objects

VERSION

Top

Version 1.0.1

SYNOPSIS

Top

    See perldoc SOAPjr for more info.

AUTHOR

Top

Rob Manson, <robman[at]cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-soapjr at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SOAPjr. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc SOAPjr




You can also look for information at:

* SOAPjr.org

http://SOAPjr.org

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=SOAPjr

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/SOAPjr

* CPAN Ratings

http://cpanratings.perl.org/d/SOAPjr

* Search CPAN

http://search.cpan.org/dist/SOAPjr/

ACKNOWLEDGEMENTS

Top

See http://SOAPjr.org/specs.html for further information on related RFC's and specifications.

COPYRIGHT & LICENSE

Top


SOAPjr documentation Contained in the SOAPjr distribution.
package SOAPjr::message;

use strict;
use warnings;

our $VERSION = "1.0.1";

use base qw(SOAPjr::base);

sub _init {
    my $self = shift;
    delete $self->{MOBject_structure}->{ENVELOPE};
    delete $self->{MOBject_structure}->{OPTIONS};
    return $self->SUPER::_init(@_);
}

1;