Erro aplicação JSF 2 com PrimeFaces ocorrendo quando abre no navegador Chrome

Quando abro um sistema feito com JSF2 com componentes do Primefaces, instalado no Glassfish 3, pelo navegador Google Chrome, ocorre a seguinte mensagem de erro:

[quote]This page contains the following errors:
error on line 46 at column 228: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.[/quote]

No IE e no Firefox não aparece esse erro… que será?

Veja se o início do seu arquivo está semelhante a isso:

[code]<?xml version='1.0' encoding='UTF-8' ?>

[/code]

O erro ocorre quando entro numa página principal que tem outras páginas dentro dela, inseridas por <ui:include> (que está dentro de um <p:tab>)

Em cada página está declarado o html assim:

&lt;html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.prime.com.tr/ui"&gt;

Será que tem que declarar esses xmlns só na página principal?

Acredito que não influencia. Eu tenho isso funcionando no chrome.

[code]

<?xml version='1.0' encoding='UTF-8' ?>
<ui:include src="../../includes/head.xhtml"/>[/code]

E o início do meu head:

[code]<?xml version='1.0' encoding='UTF-8' ?>

[/code]

Olá!

Consegui solucionar colocando a tag <f:view contentType=“text/html”> imediatamente dentro do body.

Ficou assim:

<h:body> <f:view contentType="text/html"> ... </f:view> </h:body>

Att.

Segue link com post detalhando solução:

http://www.patternizando.com.br/2011/03/google-chrome-xml-declaration-allowed-only-at-the-start-of-the-document-usando-jsf/