currently, I have following DTD:
<!DOCTYPE faces-config PUBLIC
"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
"http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
And it does not validate the 1.2 tags, like:
managed-bean => managed-property
And I cannot find a newer version form sun: http://java.sun.com/dtd/
from some tutorials, I see people simply not using DTD for JSF 2 at all, should I try to find a DTD or is DTD deprecated for JSF 1.2+?
Many thanks for your suggestions.