See my responses, inline, below, please.

On Thu, Apr 18, 2013 at 12:41 PM, maurojava <mauro2java2...@gmail.com>wrote:

> tank you for response.
> my question is not how use the component <p:fileUpload>
> my problem it is that i have to configure same thing i tihink  into web.xml
> or faces-config.xml
> for not get the deployment error when i deploy the application on tomee
> that
> came with myfaces.
>
> the error that i get it is :
> Caused by: java.lang.InstantiationException:
> org.primefaces.context.PrimePartialViewContextFactory
>

Interesting. that doesn't look good. :)


> ---------------------------------------------------------------------
>
> i have found the following web site :
>
> http://www.borislam.com/2013/02/sample-apps-spring-data-mongodb-and-jsf_3493.html
>
>
Spring? i'm not a 'spring' user, nor do I have experience with 'spring'.



> int othe tutorial into web.xml i read many context-param .
>
> For get Primefaces with myfaces i have to set all the parameter????
> I have noted that for the faces servlet it use :
>
> org.apache.myfaces.webapp.MyFacesServlet
>
>  <servlet>
>         <servlet-name>Faces Servlet</servlet-name>
>
>
> <servlet-class>org.apache.myfaces.webapp.MyFacesServlet</servlet-class>
>         <load-on-startup>1</load-on-startup>
>     </servlet>
>
>
> what you think?  it is for myfaces optimezed ?
>
>
I don't have those in web.xml. In my previous response, I shared a URL to
PrimeFaces forum topic, where I shared my web.xml changes.

I have the following in web.xml (in the following order) :

    <filter-mapping>
        <filter-name>PrimeFaces FileUpload Filter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>

    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>

Reply via email to