Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pass POST data via raw HTTP

Tags:

http

post

For testing purposes, I need to send some raw POST data to a page I set up on my web server. The page is working fine. I have tested sending data to via another web page as well as a C# application. However, I want to try passing raw HTTP data to it as well.

How can I do that? What client will enable me to do that? I'm looking to pass data to the page in the following form:

    POST /login.jsp HTTP/1.1
    Host: www.mysite.com
    User-Agent: Mozilla/4.0
    Content-Length: 27
    Content-Type: application/x-www-form-urlencoded

    userid=joe&password=guessme
like image 273
xbonez Avatar asked Sep 26 '11 07:09

xbonez


2 Answers

If you want it real raw, use telnet. If you want something more high-level — you can use curl.

like image 196
dmedvinsky Avatar answered Sep 21 '22 02:09

dmedvinsky


You could use a Javascript Ajax library, both jQuery and Prototype JS allow you to easily modify headers and Post data.

like image 20
Barry Kaye Avatar answered Sep 22 '22 02:09

Barry Kaye