Bonjour à tous,

Je souhaite développer un simple projet web en JEE avec IceFaces sous Eclipse.
J'ai choisi un Dynamic Web Project.
Il y a index.jsp qui fait un forward vers ICEfacesPage1.jspx. Voilà son contenu

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
<?xml version="1.0" encoding="utf-8" ?>
<jsp:root version="1.2" 
    xmlns:jsp="http://java.sun.com/JSP/Page"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ice="http://www.icesoft.com/icefaces/component">
 
    <jsp:directive.page contentType="text/html;charset=utf-8" />
 
<f:view>
    <ice:outputDeclaration doctypeRoot="HTML"
            doctypePublic="-//W3C//DTD HTML 4.01 Transitional//EN"
            doctypeSystem="http://www.w3.org/TR/html4/loose.dtd" />
    <html>
        <head>
           <title>
              <ice:outputText value="ICEfaces, Ajax for Java EE" />
           </title>
           <ice:outputStyle href="./xmlhttp/css/royale/royale.css" />
        </head>
        <body>
            <ice:outputText value="Welcome to ICEfaces." />        
            <ice:form>
 
                <ice:messages/>     
            </ice:form>
        </body>
    </html>
</f:view>
</jsp:root>
Quand je lance le projet avec Tomcat 6 j'obtiens une exception de type java.lang.IllegalArgumentException causée par une exception de type IceFaces : java.net.URISyntaxException.

Quelqu'un peut il m'aider s'il vous plait ?
En vous remerciant d'avance,
Nicolas