|
| 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#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...