Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to upload a file using PrimeFaces, but the fileUploadListener method isn't being invoked after the upload finishes.

Here is the view:

<h:form>
    <p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}"
        mode="advanced" 
        update="messages"
        sizeLimit="100000" 
        allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/>

    <p:growl id="messages" showDetail="true"/>
</h:form>

And the bean:

@ManagedBean
@RequestScoped
public class FileUploadController {

    public void handleFileUpload(FileUploadEvent event) {
        FacesMessage msg = new FacesMessage("Succesful", event.getFile().getFileName() + " is uploaded.");
        FacesContext.getCurrentInstance().addMessage(null, msg);
    }

}

I've placed a breakpoint on the method, but it's never called. When using mode="simple" and ajax="false", it is been invoked, but I want it to work in the advanced mode. I'm using Netbeans and Glassfish 3.1.

share|improve this question

3 Answers

up vote 29 down vote accepted

As per the PrimeFaces Users Guide:

2.2 Dependencies

PrimeFaces only requires a JAVA 5+ runtime and a JSF 2.x implementation as mandatory dependencies. There’re some optional libraries for certain features.

Dependency         | Version    | Type     | Description
-------------------+------------+----------+---------------------------------
JSF runtime        | 2.0 or 2.1 | Required | Apache MyFaces or Oracle Mojarra
itext              | 2.1.7      | Optional | DataExporter (PDF).
apache poi         | 3.7        | Optional | DataExporter (Excel).
rome               | 1.0        | Optional | FeedReader.
commons-fileupload | 1.2.1      | Optional | FileUpload
commons-io         | 1.4        | Optional | FileUpload

(note the last two entries)

and

3.34 FileUpload

...

Getting started with FileUpload

First thing to do is to configure the fileupload filter which parses the multipart request. FileUpload filter should map to Faces Servlet.

<filter>
    <filter-name>PrimeFaces FileUpload Filter</filter-name>
    <filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>PrimeFaces FileUpload Filter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
</filter-mapping>

Simple File Upload

Simple file upload mode works in legacy mode with a file input whose value should be an UploadedFile instance.

<h:form enctype="multipart/form-data">
    <p:fileUpload value="#{fileBean.file}" mode="simple" />
    <p:commandButton value="Submit" ajax="false"/>
</h:form>

...

Summarized, you need to ensure the following:

  1. commons-fileupload and commons-io are present in the webapp's runtime classpath (just dropping the JARs in /WEB-INF/lib ought to be sufficient).

  2. The FileUploadFilter is mapped on the exact <servlet-name> of the FacesServlet as is been definied in your web.xml. If you've given it a <servlet-name> of for example facesServlet, then you need to edit it in the <filter-mapping> example as well.

  3. The enctype of the <h:form> needs to be set to multipart/form-data.

  4. In simple file upload with mode="simple", ajax must be disabled on any PrimeFaces command buttons/links by ajax="false".

I must however admit that the PrimeFaces Users Guide is not explicit enough on the last two points.

Further there are another possible causes unrelated to PrimeFaces configuration:

  1. There's another Filter in your webapp which runs before the PrimeFaces file upload filter and has already consumed the request body by e.g. calling getParameter(), getParameterMap(), getReader(), etcetera. A request body can be parsed only once. When you call one of those methods before the file upload filter does its job, then the file upload filter will get an empty request body.

If you're still having problems, well, debug the HTTP traffic. Open the webbrowser's developer toolset (press F12 in Chrome/Firebug/IE9) and check the Net/Network section.

share|improve this answer
I've tried that, bug still nothing. – Rodrigo Cavalcante Jan 16 '12 at 15:13
1  
Another cause could be that you didn't register the PrimeFaces upload filter in web.xml as per the PrimeFaces Users Guide. Did you read it anyway? That would however not explain why mode="simple" works for you. – BalusC Jan 16 '12 at 15:17
Yes I did read it and I've registered the filter, but I just noticed that it's giving me an error when starting the server "SEVERE: WebModule[/EventsCalendary]PWC1270: Exception starting filter PrimeFaces FileUpload Filter" I feel so dumb for not noticing it before. Any tips on solving this error? – Rodrigo Cavalcante Jan 16 '12 at 16:11
1  
Perhaps the filter mapping is incorrect. It has to be mapped on the <servlet-name> of the FacesServlet as you've definied in web.xml. It defaults by most IDEs/code-generators to Faces Servlet, but it can be as good facesServlet or something which is more confirm naming conventions. – BalusC Jan 16 '12 at 16:17
1  
Nevermind solved it by adding commons-fileupload to the classpath and commons-io, is there anywhere saying that these libraries are needed? Anyway, everything seems to be working right now, the method is being called like it was supposed to, thanks. – Rodrigo Cavalcante Jan 16 '12 at 16:22
show 5 more comments

You are using prettyfaces too? Then set dispatcher to FORWARD:

<filter-mapping>
   <filter-name>PrimeFaces FileUpload Filter</filter-name>
   <servlet-name>Faces Servlet</servlet-name>
   <dispatcher>FORWARD</dispatcher>
</filter-mapping>
share|improve this answer
3  
Oh Lord thank you so much for that answer :) – Nick Russler Sep 15 '12 at 12:09
1  
YOU DESERVE A MEDAL! This applies to OmniFaces as well! – maple_shaft Feb 6 at 18:11

One point I noticed with Primefaces 3.4 and Netbeans 7.2:

Remove the Netbeans auto-filled parameters for function handleFileUpload i.e. (event) otherwise event could be null.

<h:form>
    <p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload(event)}"
        mode="advanced" 
        update="messages"
        sizeLimit="100000" 
        allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/>

    <p:growl id="messages" showDetail="true"/>
</h:form>
share|improve this answer

protected by Community May 2 at 6:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.