| | FacesContext context = FacesContext.getCurrentInstance(); | HttpServletResponse response = (HttpServletResponse) context.getExternalContext().getResponse(); | response.setContentType(contentType); //fill in contentType | OutputStream os = response.getOutputStream(); | os.write(bytes); //fill in bytes | os.flush(); | os.close(); | context.responseComplete(); | |
-Dustin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4122693#4122693 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4122693 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
