Truong Ha
Truong Ha

Reputation: 10954

HTTP PUT method structure example

I learn about HTTP and need some examples of HTTP PUT method structure, something like this one for HTTP POST method

alt text

Can you tell me some, thanks!

Upvotes: 7

Views: 12909

Answers (2)

Julian Reschke
Julian Reschke

Reputation: 41997

The structure is exactly the same, just the use of the body (replaces the original content) is different.

Guess what, there's a spec: RFC 2616, Section 9.6.

Upvotes: 1

sholsapp
sholsapp

Reputation: 16070

I think the best examples you're going to get are real world examples. Download LiveHTTPHeaders for Firefox and start recording some of your own traffic to somewhere you know you post data to. You'll have an endless amount of data to look over that way.

Upvotes: 2

Related Questions