Author: atsebro
Date: 2008-09-16 11:23:57 -0400 (Tue, 16 Sep 2008)
New Revision: 10453
Modified:
trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml
Log:
RF-4080: Developer guide does not contain details for web.xml configuration to
successfully integrate fileUpload component with myfaces framework
Modified: trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml
===================================================================
--- trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2008-09-16 15:00:42 UTC (rev
10452)
+++ trunk/docs/faq/en/src/main/docbook/module/RFCfaq.xml 2008-09-16 15:23:57 UTC (rev
10453)
@@ -2480,12 +2480,12 @@
<section id="richfileUploadforMyFaces" role="new">
<?dbhtml filename="richfileUploadforMyFaces.html"?>
- <title>How to configure <rich:fileUpload> for
MyFaces framework</title>
- <para> To make <emphasis role="bold">
-
<property><rich:fileUpload></property>
- </emphasis> component work properly with MyFaces framework,
the
- extentions filter for that framework should be defined in
web.xml
- file. </para>
+ <title><rich:fileUpload> with
MyFaces</title>
+ <para>The following order, in which filters are defined and
mapped in web.xml, is important for <emphasis role="bold">
+
<property><rich:fileUpload></property>
+ </emphasis> component proper work with MyFaces.
+ Note that the extention filter should be mapped on faces servlet not to *.jsf (!) to
provide this sequence work correctly.
+ </para>
<para>
<emphasis
role="bold">Example:</emphasis>
</para>
@@ -2555,11 +2555,7 @@
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
...]]></programlisting>
- <para> Note, that definition and mapping of the extentions
filter goes after
- definition and mapping of ajax filter. This is a required
condition to
- make it work properly. Moreover, the extention filter
should be mapped
- on the faces servlet but not to *.jsf (!) to provide this
sequence
- work properly. </para>
+
</section>
<section id="suggestionboxObjectSelection">