BPCatalog file-upload component bug

Hi!

I think that found a bug:

If for the BPCatalog uploading example (bp-file-upload.war) you change in web.xml a Faces Servlet mapping from "/faces/*" to "*.jsf" - component doesn't work when index.jsf is opening (progress bar didn't see and uploading didn't any action):

...

<servlet-mapping>

<servlet-name>FacesServlet</servlet-name>

<url-pattern>*.jsf</url-pattern>

</servlet-mapping>

...

What I'm doing wrong? It's bug?

[529 byte] By [@akira_aga] at [2007-11-27 9:27:42]
# 1

Hi to all again!

I found a workarond for this problem. You can add the following lines in the web.xml:

<servlet-mapping>

<servlet-name>FacesServlet</servlet-name>

<url-pattern>*.jsf</url-pattern>

<url-pattern>/static/META-INF/dojo/*</url-pattern>

<url-pattern>/dynamic/META-INF/dojo/*</url-pattern>

</servlet-mapping>

@akira_aga at 2007-7-12 22:30:20 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Ouhh...I found an another simple workaround:...<url-pattern>*.jsf</url-pattern><url-pattern>/faces/*</url-pattern>...
@akira_aga at 2007-7-12 22:30:20 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...