This is more of a basic html/http question but it involves perl also. I am trying to get the contents of a web page that uses the POST method along with a few header/value pairs. When I put the following URL into my browser the resulting page is empty. I am not sure what I am doing wrong. My URL is based on the HTML form that I found in the source code. What am I missing? So this is how I am submitting my info:

http://x.x.x.x/cgi-bin/rgcgi?type=DisplayRoute&table=IPtoPSTNRoute&phonenumbermatch=A1212

This is what I see in an ethereal trace

Line-based text data: application/x-www-form-urlencoded

type=DisplayRoute$table=IPtoPSTNRoute&phonenumbermatch=A1212

Here is the html form:


Display IPtoPSTNRoute

<form action="rgcgi?action=IPtoPSTNRoute" method="post"> <input type="hidden" name="type" value="DisplayRoute"> <input type="hidden" name="table" value="IPtoPSTNRoute">Phonenumber Match: <input type="text" name="phonenumbermatch">   <input type="submit" value="Display Routes"></form>
This is what my code looks like
#!/usr/bin/perl require LWP::UserAgent; use HTTP::Request::Common; my $ua = LWP::UserAgent->new; $ua->timeout(10); $ua->env_proxy; $response = $ua->request(POST 'http://x.x.x.x/cgi-bin/rgcgi', [ type => DisplayRoute, table => IPtoPSTNRoute, phonenumbermatch => 'A1212' ]); if ($response->is_success) { print $response->content; # or whatever } else { die $response->status_line; }

In reply to using LWP to POST multiple name/value pairs by atistler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.