tags:

views:

20

answers:

2

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!

+1  A: 

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.

gnucom
+1  A: 

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.

Julian Reschke