JSF + Jboss

Boa Tarde,

Alguem sabe me dizer o erro neste JSF?


<%@page contentType="text/html" pageEncoding="UTF-8"%>

<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

<f:view>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
            <title>Cadastro de Usuários</title>
        </head>
        <body>
            <h:form id="PageForm">

                <h:outputLabel id="lblUsuario" value="Usuário"/>:&nbsp;<h:inputText id="txtUsuario" autocomplete="true" title="Informe o usuário" value="#{usuarioCadastro.usuario}"/><br>
                <h:outputLabel id="lblSenha" value="Senha"/>:&nbsp;<h:inputSecret id="txtSenha" autocomplete="false" title="Informe a senha" value="#{usuarioCadastro.senha}"/><br>
                
                <h:commandButton id="btnSalvar" value = "Salvar" title="Clique aqui para Salvar!" action="#{usuarioCadastro.onBotaoSalvarClick}" />&nbsp
                <h:commandButton id="btnCancelar" value = "Cancelar" title="Clique aqui para Cancelar!"/>
            </h:form>
        </body>
    </html>
</f:view>

Erro:

com.sun.facelets.FaceletException: Error Parsing /CadastroUsuarios.jsp: Error Traced[line: 3] The markup in the document preceding the root element must be well-formed.

Obrigado.

Ninguem?

;/

Aparentemente não está reconhecendo o charset.
Dê uma olhada em http://amateras.sourceforge.jp/docs/FacesIDE/SampleJSFApp.html

O Código está certo, ele roda no TOMCAT, só no meu JBOSS que não…

;/

Talvez esse erro ajude mais…

Created dir: C:\Users\Thiago\Documents\NetBeansProjects\WebApplication9\build\generated\src org.apache.jasper.JasperException: file:C:/Users/Thiago/Documents/NetBeansProjects/WebApplication9/build/web/CadastroUsuarios.jsp(3,55) PWC6188: The absolute uri: http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar files deployed with this application org.apache.jasper.JasperException: PWC6188: The absolute uri: http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar files deployed with this application C:/Users/Thiago/Documents/NetBeansProjects/WebApplication9/build/web/CadastroUsuarios.jsp(3,55) C:\Users\Thiago\Documents\NetBeansProjects\WebApplication9\nbproject\build-impl.xml:575: Java returned: 1 FALHA NA CONSTRUÇÃO (tempo total: 1 segundo)

Olhei no fórum, segundo o pessoal é configuração do web.xml, só que fiz o que passaram e não deu certo.

Alguem sabe?

Obrigado.

tenta alterar a disposição das tags no jsp.

[code]

Cadastro de Usuários // ... ... [/code]