download « Page « JSF Q&A





1. problem completing renderResponse phase after redirecting to a servlet from a JSF page in portal environment    stackoverflow.com

  1. I have a commandLink in a JSF page in a portal environment. On clicking it, I redirect to a servlet (by calling facesContext.getExternalcontext().sendRedirect(//Servlet URL//)).
  2. the servlet is created for downloading an ...

2. Download link page JSF    stackoverflow.com

How can I produce a URL which somebody could open and that would immediately download a file e.g. pdf? I have been using ice:outputResource but that requires the user clicks on a ...

3. Blank pages when creating and downloading a PDF file (iText & JSF)    stackoverflow.com

I'm having a problem when I try to create a PDF file using iText and want to download it immediately afterwards. First I create a PDF file using the iText library, ...

4. Unable to download zip file from JSF page    stackoverflow.com

I am trying to download multiple PDF files as one zip file and then update the details on a JSF page - effectively showing that I am working on these files. ...

5. Downloading file from page using JSF    stackoverflow.com

Is there a way to automate downloading of files in page which uses JSF? I need to download file based on parameters I choose from drop-down menu and calendar. After that, if ...

7. File Download and page navigation    coderanch.com

I was wondering if anyone could help me? Im new to JSF (in fact Java), and Im having problems implementing a feature. Currently were providing a link on a page to allow a user to download a file onto their local machine, which Ive successfully built, resulting in a Save As dialogue box being displayed by the client. My problem is ...

8. JSF page refresh after csv file download.(POI)    coderanch.com

public void openPopupClicked(ActionEvent event) { // View's id in the same form as used in the navigation rules in faces-config.xml // This value could be passed as parameter (using ) final String viewId = "/popup.faces"; FacesContext facesContext = FacesContext.getCurrentInstance(); // This is the proper way to get the view's url ViewHandler viewHandler = facesContext.getApplication().getViewHandler(); String actionUrl = viewHandler.getActionURL(facesContext, viewId); String javaScriptText ...