I am at the throes of learning RichFaces and JSF 2.X. I am using a tutorial here and Eclipse marks the faces-config declaration
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
version="1.2">
in error
Multiple markers at this line
- Attribute "xmlns:xsi" must be declared for element type "faces-config".
- Attribute "xmlns" with value "http://java.sun.com/xml/ns/javaee" must have a value of "http://java.sun.com/JSF/Configuration".
- Attribute "version" must be declared for element type "faces-config".
- Attribute "xsi:schemaLocation" must be declared for element type "faces-config".
I know I am out of my depth here and have attempted to ascertain a fix for this. Am I missing declarations? Forget to include something?
version="1.2"
tofaces-config
? – Emil Sierżęga