I've written a service in Spring using HTTP PUT method for uploading a file. I developed it using POST but my requirement is it be PUT. It seems the only real difference from a coding perspective is the RequestMethod defined in the RequestMapping.
So I switch the RequestMethod to PUT and try it but Web Browsers don't support PUT. I've tried using Fiddler to clone the Post and change it to PUT but I must be missing a step.
Please and Thank you.
update: This is what worked. I tried Poster but it suffers from the same thing as using fiddler. You have to know how to build the request. curl takes care of the problem.
curl -X PUT "localhost:8080/urlstuffhere" -F "file=@filename" -b "JSESSIONID=cookievalue"