0

私は、Ice Faces 3、Tomcat 7.0 を使用して JSF アプリケーションに取り組んでいます。私の問題は、アプリケーションが firefox と chrome では問題なく動作するが、Internet Explorer 9 では開かないことです。これは xhtml ページです。

<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"[
     <!ENTITY nbsp   "&#160;">
     <!ENTITY auml   "&#228;">
     <!ENTITY ouml   "&#246;">
     <!ENTITY Ouml   "&#214;">
     <!ENTITY uuml   "&#252;"> 
     <!ENTITY szlig  "&#223;">
]>

<html xmlns="http://www.w3.org/1999/xhtml"
    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:icecore="http://www.icefaces.org/icefaces/core"  xmlns:ace="http://www.icefaces.org/icefaces/components"   xmlns:ice="http://www.icesoft.com/icefaces/component" 
    >
    <h:head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>#{msgs.MyTitle}</title> 
    <link rel="stylesheet" href="./css/tas.css" />
    <ice:outputStyle href="./css/processbar.css" />
  <script type="text/javascript" defer="defer" language="javascript" src="posadmin.js" />
    </h:head>
    <h:body>
    <ice:panelGrid columns="1" cellspacing="0" cellpadding="0" border="0" width="100%">
        ***<ui:include src="head.xhtml"/>
                <ui:include src="Filter.xhtml"/>
        <ui:include src="admin.xhtml"/>*** 
        </ice:panelGrid>
     <ice:form id="error_form">
    <ui:include src="/popups/error.xhtml"></ui:include>
  </ice:form>
  <ice:form id="message_form">
    <ui:include src="/popups/message.xhtml"></ui:include>
  </ice:form>
    <ice:form id="close_form">
    <ui:include src="/popups/close.xhtml"></ui:include>
  </ice:form>
    </h:body>
</html>

ui:include ステートメントのいずれかを削除すると

<ui:include src="head.xhtml"/>
<ui:include src="Filter.xhtml"/> or
<ui:include src="admin.xhtml"/>

上記で、ページが表示されるすべてのice:formブロックを削除します。つまり、9...誰か助けてくれませんか????

4

1 に答える 1

0

アプリケーションからクラスパスに javax.faces.jar (mojarra) を追加する必要があります。この jar には Icefaces Lib が付属しています

これを試してみてください。

于 2013-01-24T03:54:53.227 に答える