in reply to Re^3: Simulating --keep-session-cookies wget option with LWP ?
in thread Simulating --keep-session-cookies wget option with LWP ?
Ok, I tested your script with google and it works.
Then it maybe related with tomcat auth issue:
I changed your script to work with my tomcat manager:
And then it printout cookie when I launch without parameters:use strict; use HTTP::Cookies; use LWP::UserAgent; # try to simulate wget: my $cookie_jar = HTTP::Cookies->new( file => "mycookie-tomcat.cookie", autosave => 1, ); my $ua = LWP::UserAgent->new; $ua->credentials ("host:8080","Tomcat Manager Application","user","pas +sword"); $ua->timeout(2); $ua->cookie_jar($cookie_jar); #$ua->env_proxy; if( !@ARGV) { warn "Requesting page"; my $request= HTTP::Request->new (GET=> "http://host:8080/manager/statu +s?XML=true"); my $status=$ua->request ($request); if ($status->is_success) { print $status->decoded_content(); } else { print STDERR $status->status_line, "\n"; return 1; } }; use Data::Dumper; warn "Cookies in jar:"; $cookie_jar->scan(sub { warn Dumper \@_ });
... $VAR1 = [ 0, 'JSESSIONID', '1F627DA1EED0B70CC94F4D3EB9ECD378.host', '/manager', 'host.local', undef, 1, undef, undef, 1, {} ]; ...
but file of cookie is empty:
$ cat mycookie-tomcat.cookie #LWP-Cookies-1.0
I discover in tcpdump / wireshark, tomcat is returning first an 401 error with "You are not authorized to view this page. If you have not changed ...", setting a cookie wich is used by lwp after (it try again the access and the page is loaded correctly), but seems like not saved in the file
Thank you !
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Simulating --keep-session-cookies wget option with LWP ?
by Corion (Patriarch) on Sep 27, 2011 at 11:34 UTC | |
by i5513 (Pilgrim) on Sep 27, 2011 at 11:57 UTC |