in reply to How can i simulate a form post using sockets?
$host is the IP address of the required hostuse IO::Socket; use strict; my $socket=new IO::Socket( PeerAddr=>$host, PeerPort=>80, #HTTP Proto=>'tcp', ) or die "cannot create socket\n"; #print the input to the socket print $socket "<your get command here">; #read the input from the socket my $data=<$socket>; print $data; print $socket "<your post command here>"; close $socket
|
|---|