I can't speak for Hakan, but in my case, there is no form invloved.
This is one script opening up it's own connection to the webserver and
making a request of another page:

--------------------------------
use strict;
use warnings;
use diagnostics;
use LWP::UserAgent;

my $ua = new LWP::UserAgent;
my $site = 'http://localhost/';
my $response = $ua->post($site);

print $response->content;
--------------------------------

Volker Kroll wrote: 
>Maybe you a trapped by the same error I had yesterday and searched for
many hours.... 
>
>I had in my html:
>
><form method="POST" action="/mymodperlapp">
>but it has to be:
><form method="POST" action="/mymodperlapp/">
>                                         ^
>The Server redirected me to a GET Request to /mymodperlapp/

--
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html

Reply via email to