in reply to The Cookiejar Problem
oruse Data::Dumper; print Dumper($response), "\n";
and examine the output.print "\n----\nHEADERS ", __FILE__, " SENT\n"; print $response->request->headers->as_string; print "\n----\nHEADERS ", __FILE__, " RECIEVED FROM ", $response->requ +est->uri, "\n"; print $response->headers->as_string, "\n----\n";
If you don't see any "cookie" lines, then
maybe $url is using client-side scripting (such as JavaScript)
to set cookies,
or your proxy (if you have one) is stripping cookies ...
Next step would be to compare
headers to those you see when using Firefox with the
Live HTTP Headers plugin
|
|---|