0

As per this post, I tried to find out html_basic.taglib.xml file in jsf-impl.jar (as per answer from BalusC). There doesn't exist any xml file html_basic.taglib.xml. However, there are other xml files like jsf-ri-runtime.xml, xml.xsd which doesn't have entry for the URL in question.

Since I didn't get the required xml file and required entry for the URL I counldn't actually understand what BalusC tried to tell in that post. Can anyone please elaborate on the same? And where can I find the xml files in JSF jars?

1 Answer 1

1

That answer applies to JSF 2.0, not to JSF 1.2.

In JSF 1.2, which does not support Facelets natively, there's no means of any .taglib.xml file in the jsf-impl.jar. There are only JSP-specific .tld files. For Facelets in JSF 1.2, it's instead enclosed in jsf-facelets.jar. It's located in /META-INF/jsf-html.taglib.xml, which in turn contains solely the following entry:

<facelet-taglib> <library-class>com.sun.facelets.tag.jsf.html.HtmlLibrary</library-class> </facelet-taglib> 

You can find here the source code of HtmlLibrary.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.