I want to know if this can be done.
I got a RESTful service sending a javax.ws.rs.core.Response response like this
File filer = new File("C:\tempfile.txt");
return Response.ok(filer, MediaType.APPLICATION_OCTET_STREAM).header("content-disposition", "attachment; filename=\"" + newName + "\"").build();
I want to delete file after http response has been sent to the client (making filer a temporary file on server).
I thank your help in advance.