Salut à tous

je développe une application web java en utilisant JSF, le problème c'est quepage xhtml ne veux pas s'afficher avec le browser FireFox et revoie l'erreur suivante :
Erreur d'analyse XML : mal formé
Emplacement : http://localhost:8080/faehrplattform...A0F0E1?cid=109
Numéro de ligne 24, Colonne 1062 :


le code de ma page xhtml est le suivant :


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
 <!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:s="http://jboss.com/products/seam/taglib"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:a4j="http://richfaces.org/a4j" template="/layout/template.xhtml">
 
 
    <ui:define name="body">
 
 
        <h:form id="editingferrytoitinerary">
 
            <rich:panel>
                <f:facet name="header">
                    <s:div>
                        <h:outputText id="myheader"
                            value="#{messages['ferry_to_itinerary']}" />
 
                    </s:div>
                </f:facet>
 
 
                <s:div id="ferrypickList">
                    <h:panelGrid columns="2">
                        <a4j:outputPanel id="outputNb">
                            <h:outputText value="#{itineraryAction.selectedValues.size}"
                                style="color:blue;font-weight: bold;"></h:outputText>
                            <h:outputText id="statictext"
                                value=" #{messages['ferry_proposing_itinerary']}"></h:outputText>
                        </a4j:outputPanel>
                        <br />
                        <br />
                    </h:panelGrid>
                    <rich:pickList value="#{itineraryAction.selectedValues}"
                        styleClass="rich-picklist" converter="javax.faces.Long">
                        <f:selectItems value="#{itineraryAction.ferryList}" />
                        <a4j:support event="onlistchanged" reRender="outputNb" />
                    </rich:pickList>
                </s:div>
            </rich:panel>
 
            <div class="actionButtons"><s:button
                view="/itinerary/itinerarieslist.xhtml" action="cancel"
                value="#{messages['cancel']}" styleClass="button"></s:button> <h:commandButton
                value="#{messages['Save']}"
                action="#{itineraryAction.saveFerryToItinerary}" styleClass="button" /></div>
 
        </h:form>
 
    </ui:define>
</ui:composition>

Le problème c'est que avec Internet Explorer marche et avec FireFox non.

est ce que vous pouvez m'aider SVP.
et merci.