I am having some difficulties getting results from a form via Perl. I believe I have successfully found the form and submitted the value I want to the appropriate field, but am unsure of how to turn the response object into something useful (If I print it out it shows up as the following).

HTTP::Request=HASH(0x895b8ac)

Here is the relevant code (assume $url is correct)


    my $ua = LWP::UserAgent->new;
    my $responce = $ua->get($url);
    my @form = HTML::Form->parse($responce);
    my $chosen = $form[0];
    $chosen->value('netid', $user);
    my $ro = $chosen->click('Search');

What can I do to make $ro useful?

Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

To quote the HTML::Form docs on click:

The result of clicking is an HTTP::Request object that can then be passed to LWP::UserAgent if you want to obtain the server response.

So you can do:

my $ua = LWP::UserAgent->new;
my $response = $ua->get($url);
my @form = HTML::Form->parse($response);
my $chosen = $form[0];
$chosen->value('netid', $user);
my $ro = $chosen->click('Search');

# If you want to see what you're sending to the server:
print $ro->as_string;

# Fetch the server's response:
$response = $ua->request($ro);

What you do with $response next depends on what you're trying to do.

P.S. "responce" is usually spelled without a C. But HTTP does have a history of misspellings. (I'm looking at you, "Referer".)

link|improve this answer
Ok, when I run that code I get "Can't use a HTTP::Request object as a URI". I am trying to get out the results from submitting the form – Ross Larson Apr 20 '11 at 4:32
@Ross, sorry, wrong method. You use request when you already have a request object. – cjm Apr 20 '11 at 4:35
Ah okay. Thanks! That worked. Is there any way to get a listing of the fields in the results? – Ross Larson Apr 20 '11 at 4:39
@Ross, I don't know what you mean by that. – cjm Apr 20 '11 at 4:40
The form result once it is sent is a page that shows the name associated with the looked up user name (hence "netid" as in network id). a few other pieces of info are given as well, but I only want the name, how can i extract that? And thanks so much for your help! – Ross Larson Apr 20 '11 at 4:44
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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