I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to get the uncompressed content.

However I would like to do this transparently so that WWW::Mechanize methods like form(), links() etc work on and parse the uncompressed content. Since WWW::Mechanize is a sub-class of LWP::UserAgent, I would prefer to use the LWP::UA::handlers to do this.

While I have been partly successful (I can print the uncompressed content for example), I am unable to do this transparently in a way that I can call

$mech->forms();

In summary: How do I "replace" the content inside the $mech object so that from that point onwards, all WWW::Mechanize methods work as if the Content-Encoding never happened?

I would appreciate your attention and help. Thanks

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

http://search.cpan.org/perldoc?WWW::Mechanize::GZip I think.

link|improve this answer
Thanks! Wonder how I missed it - I did search CPAN :) – Ya. Perelman May 17 '09 at 11:41
feedback

It looks to me like you can replace it by using the $res->content( $bytes ) member.

By the way, I found this stuff by looking at the source of LWP::UserAgent, then HTTP::Response, then HTTP::Message.

link|improve this answer
Yes - it works. Thanks. Will use it when I want to do more than gunzip content. For now I'll just use the module suggested by Fayland – Ya. Perelman May 17 '09 at 11:41
Be careful, WWW::Mechanize::GZip looks being quite buggy (see stackoverflow.com/questions/6874076/…). Sorry I do not fully understand the replace method you're speaking about: can you give some example code, please? – MarcoS Aug 1 '11 at 15:44
@jettero: Did you mean "$res->decoded_content()"? In any case, I voted your answer up because I didn't even think to check for that. So I found it when I searched for "Encoding" in perldoc HTTP::Response. Thanks! – Michael Krebs Mar 12 at 10:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.