I'm sending a POST request to HTTP server and I got no answer. Code is

my $req = HTTP::Request->new(POST  => $url);
    $req->content_type('application/html');
    $req->content($text);
my $response = $browser->request($req);

And application hangs in request till timeout. The server, standalone application, is sending an answer but my script didn't receive it. The server receive the data. Any idea for root cause? How to get more details if something is received, discarded, etc. Wrong formatting, etc.?

Full code added:

#!/usr/bin/perl -w
use strict;

use LWP;
use HTTP::Request::Common;

my $browser = LWP::UserAgent->new( );
$browser->env_proxy( ); # if we're behind a firewall

my $path =$ARGV[0]; #'file to send';
my $url = $ARGV[1]; #'http://127.0.0.1:9000';

open (MYFILE,  $path) or die "Can't open $path\n";
my $text = do { local $/; <MYFILE> };
close (MYFILE) or die "Can't close $path\n";; 


my $req = HTTP::Request->new(POST  => $url);
    $req->content_type('application/html');
    $req->content($text);

my $response = $browser->request($req);

if ($response->is_success) { print $response->content; }
else { print $response->message; };
link|improve this question
Can you post the rest of your code, for $browser for example. – Myforwik Jan 12 at 8:17
Please check whether the URL is correct or if it is accessible from the server the script runs. – Pradeep Jan 12 at 8:24
Code added. Server is running locally using 127.0.0.1. The script is using "127.0.0.1:9000"; as parameter. – Alin Jan 12 at 9:07
Does your system have any proxy setup? comment this line and try "$browser->env_proxy( );" – Pradeep Jan 12 at 9:34
1  
Have you tried curl -v --data @file_to_send -X POST http://127.0.0.1:9000 ? What's the result? – Karsten S. Jan 12 at 21:11
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.