in reply to Getting HTTP POST without webserver??

It is imposible receive http post without web-server. You can create a perl script (use AnyEvent::HTTPD or other), but it will be "A simple web server"
  • Comment on Re: Getting HTTP POST without webserver??

Replies are listed 'Best First'.
Re^2: Getting HTTP POST without webserver??
by ikegami (Patriarch) on Nov 16, 2010 at 02:20 UTC

    Not at all. You could receive an HTTP POST request as an HTTP::Request object, via CGI, etc. You just can't receive it over HTTP without an HTTP/web server.