chak$ curl -D - -X GET http://localhost/movies/3 
HTTP/1.1 200 OK 
<movie id='3'><name>Casablanca</name><rating>PG-13</rating><rating_description>Parents strongly cautioned</rating_description><length_minutes>120</length_minutes></movie> 

chak$ curl -D - -X GET http://localhost/movies/3.html 
HTTP/l.l 406 Not Acceptable 

chak$ curl -D - -X GET -H "Accept: text/html" http://localhost/movies/3 
HTTP/l.l 406 Not Acceptable 

chak$ curl -D - -X DELETE http://localhost/movies/3 
HTTP/l.l 405 Method Not Allowed 


