Bonjour,

J'ai une appli JSF/Richfaces qui fonctionne très bien avec Tomcat 6.

Je dois malheureusement la migrer sur un serveur Tomcat 5.5.
Cela m'a contraint à créer un nouveau projet sous Eclipse et à passer à JSF 1.1 et richfaces 3.1.6.

Lorsque je lance, le serveur, aucune exception dans le log. Pourtant lorsque je cherche à afficher une page, tout ce qui est tag JSF et RichFaces ne s'affiche pas.

Exemple d'une page (seul "test" s'affiche mais pas "test2").

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core">
 
	<ui:composition>
		test
		<h:outputText value="test2" />
	</ui:composition>
</html>
Et voici le web.xml :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
 
<?xml version="1.0"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 
   <display-name>TestProject</display-name>
 
	<context-param>
		<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
		<param-value>server</param-value>		
	</context-param>
 
	<context-param>
		<param-name>contextConfigListener</param-name>
		<param-value>classpath:applicationContext.xml</param-value>
	</context-param>
 
	<!-- Faces Servlet -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
 
	<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>
 
	<context-param>
		<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
		<param-value>.xhtml</param-value>
	</context-param>
 
	<!-- Plugging the "Blue Sky" skin into the project -->
	<context-param>
   		<param-name>org.richfaces.SKIN</param-name>
	  	<param-value>blueSky</param-value>
	</context-param>
 
	<!-- Making the RichFaces skin spread to standard HTML controls -->
	<context-param>
		<param-name>org.richfaces.CONTROL_SKINNING</param-name>
		<param-value>enable</param-value>
	</context-param>
 
 	<!-- Defining and mapping the RichFaces filter -->
	<filter> 
		<display-name>RichFaces Filter</display-name> 
		<filter-name>richfaces</filter-name> 
		<filter-class>org.ajax4jsf.Filter</filter-class> 
	</filter> 
 
	<filter-mapping> 
		<filter-name>richfaces</filter-name> 
	    <servlet-name>Faces Servlet</servlet-name>
		<dispatcher>REQUEST</dispatcher>
		<dispatcher>FORWARD</dispatcher>
		<dispatcher>INCLUDE</dispatcher>
	</filter-mapping>
 
</web-app>
Et pour finir, voici le faces-config.xml

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
                              "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
 
	<application>
		<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
	</application>
 
</faces-config>
Je réalise que j'ai peu de chances d'obtenir une réponse... mais on ne sait jamais.

En tout cas, merci d'avance à ceux qui s'y seront intéressé.

Chris