what http methods are used in servlets to upload/delete files from server:
- POST
- GET
- PUT
- OPTIONS
- DELETE
what http methods are used in servlets to upload/delete files from server:
For uploading file you should use post and multipart request amd to delete - delete.
Use PUT for uploads, DELETE for deletion.
Here is a nice answer with more details:Which HTTP methods match up to which CRUD methods?