in reply to Re^3: MyParser Question
in thread MyParser Question

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^5: MyParser Question
by parv (Parson) on Jul 27, 2007 at 00:29 UTC

    Use a module like Data::Dumper so that you would get more meaningful response, as in ..

    use Data::Dumper; print Dumper( $response );

    And would you please use "readmore" tags only if the code, other input or output, are unreasonably long?

      or in HTTP::Response's case, you can use print $response->as_string()