java Programming Glossary: response.setheader
Authorization redirect on session expiration does not work on submitting a JSF form, page stays the same http://stackoverflow.com/questions/14580267/authorization-redirect-on-session-expiration-does-not-work-on-submitting-a-jsf-f See also http stackoverflow.com q 4194207 157882 response.setHeader Cache Control no cache no store must revalidate HTTP 1.1. response.setHeader.. Cache Control no cache no store must revalidate HTTP 1.1. response.setHeader Pragma no cache HTTP 1.0. response.setDateHeader Expires 0..
JSP page without HTML code for exporting data to Excel Sheet http://stackoverflow.com/questions/1755509/jsp-page-without-html-code-for-exporting-data-to-excel-sheet request.getPathInfo List List Object csv someDAO .list response.setHeader content type text csv response.setHeader content disposition.. csv someDAO .list response.setHeader content type text csv response.setHeader content disposition attachment filename filename writeCsv csv..
Simplest way to serve static data from outside the application server in a Java web application http://stackoverflow.com/questions/1812244/simplest-way-to-serve-static-data-from-outside-the-application-server-in-a-java file.getName response.setContentLength file.length response.setHeader Content Disposition inline filename file.getName BufferedInputStream..
How to force Jetty to ask for credentials with BASIC authentication after invalidating the session? http://stackoverflow.com/questions/2180206/how-to-force-jetty-to-ask-for-credentials-with-basic-authentication-after-invali if session.getAttribute auth null response.setStatus 401 response.setHeader WWW Authenticate basic realm Auth session.getCreationTime session.setAttribute..
How to retrieve and display images from a database in a JSP page? http://stackoverflow.com/questions/2340406/how-to-retrieve-and-display-images-from-a-database-in-a-jsp-page response.setContentLength resultSet.getInt contentLength response.setHeader Content Disposition inline filename name BufferedInputStream..
Need Json results in a Table Format http://stackoverflow.com/questions/2758873/need-json-results-in-a-table-format table format response.setContentType json comment filtered response.setHeader Cache Control nocache OutputStream out response.getOutputStream..
Forcing a save as dialogue from any web browser from JSF application http://stackoverflow.com/questions/2914025/forcing-a-save-as-dialogue-from-any-web-browser-from-jsf-application for auto detection based on filename. response.setHeader Content disposition attachment filename name.xml The Save As..
Writing image to servlet response with best performance http://stackoverflow.com/questions/2979758/writing-image-to-servlet-response-with-best-performance filename private Long length private InputStream content response.setHeader Content Type getServletContext .getMimeType image.getFilename.. Type getServletContext .getMimeType image.getFilename response.setHeader Content Length String.valueOf image.getLength response.setHeader.. Content Length String.valueOf image.getLength response.setHeader Content Disposition inline filename image.getFilename BufferedInputStream..
how to set header no cache in spring mvc 3 by annotation http://stackoverflow.com/questions/4364622/how-to-set-header-no-cache-in-spring-mvc-3-by-annotation set header no cache in spring mvc 3 by annotation not is response.setHeader Pragma No cache response.setHeader Cache Control no cache response.setDateHeader.. 3 by annotation not is response.setHeader Pragma No cache response.setHeader Cache Control no cache response.setDateHeader Expires 0 java..
Internet Explorer cannot download the file served by JSF http://stackoverflow.com/questions/5034454/internet-explorer-cannot-download-the-file-served-by-jsf headers which have influence on the browser cache. response.setHeader Cache Control public response.setHeader Pragma public See also.. the browser cache. response.setHeader Cache Control public response.setHeader Pragma public See also MS KB Q316431 . share improve this answer..
How to force browser to download file? http://stackoverflow.com/questions/6520231/how-to-force-browser-to-download-file force download response.setContentLength int f.length response.setHeader Content Transfer Encoding binary response.setHeader Content.. response.setHeader Content Transfer Encoding binary response.setHeader Content Disposition attachment filename xxx fileName in.close.. int f.length response.setContentLength 1 response.setHeader Content Transfer Encoding binary response.setHeader Content..
|