--- Gisle Aas <[EMAIL PROTECTED]> wrote:
> "J,L" <[EMAIL PROTECTED]> writes:
> > and another question is will the $resp->base
> alsway
> > return the current url it received ?
>
> It returns the base URI that is useful for resolving
> r
Hi,
something i am curious when i reading the book "http
essentials".
is LWP default connection to the server persistent? if
i keep the instance of LWP::UserAgent after requesting
a url on one server, will the connection is keep alive
at this point as long as i don't fresh out the
isntance very s
Hi,
I am posting to a form that is redirecting to a nph
perl script which test if the page i submit has link
problem. I got the post part working. however, when
the script validating the url (print the validate
information live to the page after i post the
form),there is error saying "a glitch h
Hi,
I have problem using the requests_redirectable method
from UserAgent. follow the doc,i tried
my $url ='http://www.pulse24.com';
push @{ $br->requests_redirectable } 'GET';
my $req = GET ($url,@headers);
$req->referer($url);
my $resp = $br->request($req);
print $resp->as_string;
--- Rob Nagler <[EMAIL PROTECTED]> wrote:
> J,L writes:
> > i think to fool a server to fetch page,d/l files
> etc,
> > cookie, refer,user-agent,authentication are the
> ones
> > related most. or all?
>
> There is never a "most" in this case.
--- Keary Suska <[EMAIL PROTECTED]> wrote:
> on 10/2/02 2:43 AM, [EMAIL PROTECTED] purportedly
> said:
>
> > i am submiting a form with LWP. i have checked the
> > submission trace by using ethereal. the result i
> got
> > by submit manually and by script basically the
> > same.(submit form elem
i am submiting a form with LWP. i have checked the
submission trace by using ethereal. the result i got
by submit manually and by script basically the
same.(submit form element order different. i.e submit
name=me&address=canada another is
address=canada&name=me ) this doesn't make diff when i
am s
the cookie is set during a form submission. an
onclick() function get to invoked and a CookieSet
function is being called,cookie get created then. how
do i grab the cookie in this case? here is the
javascript code and form code.