# $Id$ package WebService::Simple::Response; use strict; use warnings; use base qw(HTTP::Response); our $VERSION = "0.02"; sub new_from_response { # XXX hack. This probably should be changed... my $class = shift; my %args = @_; my $self = bless $args{response}, $class; $self->{__parser} = $args{parser}; return $self; } sub parse_response { my $self = shift; return $self->{__parser}->parse_response( $self ); } *parse_xml = \&parse_response; 1; __END__ =head1 NAME WebService::Simple::Response - Adds a parse_response() to HTTP::Response =head1 SYNOPSIS # Internal use only =head1 METHODS =head2 new_from_response =head2 parse_response Parses the response content using the specified parser =head2 parse_xml This is a n alias for parse_response() for backwards compatibility. Use parse_response instead. =head1 AUTHOR Yusuke Wada C<< >> Daisuke Maki C<< >> =head1 COPYRIGHT AND LICENSE This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =cut