Hi, I am trying to send PUT requests to my Squid proxy, so as to Squid saves the request body in the cache. When I send a PUT request like this: PUT http://147.83.39.38:8080/myobject/ob.txt HTTP/1.1 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png Accept-Language: es-ar,es;q=0.8,en-us;q=0.5,en;q=0.3 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 User-Agent: Jakarta Commons-HttpClient/3.0.1 Host: 147.83.39.38:8080 Proxy-Connection: Keep-Alive Content-Length: 13 Content-Type: text/html; charset=UTF8 Hello World!! Squid replies with an OK response. However, when I watch the store.log file, the following lines have been added due to the PUT request: 1170780583.772 RELEASE -1 FFFFFFFF 84723B4EBE72B02ACACC34F3540E576D 200 1170780583 -1 -1 unknown 0/0 PUT http://147.83.39.38:8080/myobject/ob.txt Then, the body of the PUT request has not been saved. Could Squid save the body of the PUT request by some way? or Is not this function implementted? Thanks in advance!