1.   <?xml version="1.0" encoding="UTF-8"?>
2.   <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3.       xmlns="http://java.sun.com/xml/ns/javaee"
4.       xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
5.       xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
6.       id="RichFaces_Sample" version="2.5">
7.   
8.       <filter>
9.           <filter-name>Ajax4jsf Filter</filter-name>
10.           <filter-class>org.ajax4jsf.Filter</filter-class>
11.       </filter>
12.       <filter-mapping>
13.           <filter-name>Ajax4jsf Filter</filter-name>
14.           <servlet-name>Faces Servlet</servlet-name>
15.           <dispatcher>REQUEST</dispatcher>
16.           <dispatcher>FORWARD</dispatcher>
17.           <dispatcher>INCLUDE</dispatcher>
18.       </filter-mapping>
(中略)