Suppose I have first=John
and last=Doe
and the following URL: http://<myurl>/<my controller>
How would the HTTP message (headers and body) look like for a client receiving a HTTP Post?
Suppose I have first=John
and last=Doe
and the following URL: http://<myurl>/<my controller>
How would the HTTP message (headers and body) look like for a client receiving a HTTP Post?
Something like below. You can use firebug browser plug-in to inspect the raw HTTP communication. You can also read this article for more details.
POST /mycontroller HTTP/1.1
Host: localhost
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded
Content-Length: 20
first=John&last=Doe