From nitin-ahuja at hotmail.com Thu Oct 18 00:48:57 2007 From: nitin-ahuja at hotmail.com (Nitin Ahuja) Date: Thu Oct 18 00:49:10 2007 Subject: [HTTP-Recorder] Recording Web Interactions Message-ID: I m new to Perl, I have active Perl installed on my Windows XP. I want to configure HTTP: Recorder on Firefox. Plz tell me how to configure that?. and record the web interactions... _________________________________________________________________ Call friends with PC-to-PC calling -- FREE http://get.live.com/messenger/overview -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.bestpractical.com/pipermail/http-recorder/attachments/20071018/c49966ff/attachment.htm From grace at geospiza.com Tue Oct 23 13:49:19 2007 From: grace at geospiza.com (Grace CH Hensley) Date: Tue Oct 23 14:50:22 2007 Subject: [HTTP-Recorder] SOLUTION: Can't locate object method "query_param" Message-ID: Dear All, A google search returned several complaints about the error "Can't locate object method "query_param"". Thanks to a tip from Praveen Hombaiah (http://lists.bestpractical.com/pipermail/http-recorder/2006- February/000077.html), I diffed the subroutine causing my complaints from HTTP-Recorder version 0.05 with the one in HTTP-Recorder version 0.03_03 (http://search.cpan.org/src/LEIRA/). If you edit your version of /lib/HTTP/Recorder.pm and comment out the "for ... $content->query_param" section and paste in Leira's original content, then your proxy script should work. sub unmodify { my $self = shift; my $content = shift; return $content unless $content; # get rid of the arguments we added my $prefix = $self->{prefix}; #HIDE THIS #for my $key ($content->query_param) { #if ($key =~ /^$prefix-/) { # $content->query_param_delete($key); #} #} #ADD THIS $content =~ s/$prefix-(.*?)\?(.*?)&//g; $content =~ s/$prefix-(.*?)&//g; $content =~ s/$prefix-(.*?)$//g; $content =~ s/&$//g; $content =~ s/\?$//g; return $content; } Regards, Grace at Geospiza dot com Geospiza, Inc, Seattle, WA -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.bestpractical.com/pipermail/http-recorder/attachments/20071023/be2ebdad/attachment.htm