jsf - Error parsing XML: element not found -


while learning jsf , trying open xhtml pages in browser i'm having "error parsing xml: element not found" problem. searched web , stackoverflow in order fix it, none of solutions worked me.

i quite new jsf , doing sort of newbie mistake. problem occurs pages in app think web.xml might not correct?

application server jboss , browser firefox, on ubuntu 14.04.

here web.xml:

<?xml version="1.0" encoding="utf-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="webapp_id" version="3.0">   <display-name>homelib</display-name>   <welcome-file-list>     <welcome-file>index.xhtml</welcome-file>   </welcome-file-list>   <servlet>     <servlet-name>faces servlet</servlet-name>     <servlet-class>javax.faces.webapp.facesservlet</servlet-class>     <load-on-startup>1</load-on-startup>   </servlet>   <servlet-mapping>     <servlet-name>faces servlet</servlet-name>     <url-pattern>/faces/*</url-pattern>   </servlet-mapping>   <context-param>     <description>state saving method: 'client' or 'server' (=default). see jsf specification 2.5.2</description>     <param-name>javax.faces.state_saving_method</param-name>     <param-value>client</param-value>   </context-param>   <context-param>     <param-name>javax.faces.project_stage</param-name>     <param-value>development</param-value>   </context-param>   <context-param>     <param-name>javax.servlet.jsp.jstl.fmt.localizationcontext</param-name>     <param-value>resources.application</param-value>   </context-param>   <listener>     <listener-class>com.sun.faces.config.configurelistener</listener-class>   </listener> </web-app> 

and pages have following structure:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"            "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">        <h:html xmlns="http://www.w3.org/1999/xhtml"           xmlns:ui="http://java.sun.com/jsf/facelets"           xmlns:h="http://java.sun.com/jsf/html"           xmlns:f="http://java.sun.com/jsf/core">        <!-- here goes content -->      </h:html>   

i quess way call wrong.

your url in browser should be:

host-name:port/project-name/faces-pattern

in case:

http://localhost:8080/homelib/faces/ 

this equivalent to:

http://localhost:8080/homelib/faces/index.xhtml 

faces url pattern (in case /faces/*) necessary tell server requested url should handled via facesservlet


Comments