Custom JSP tags library lets you perform XPath processing right
in your JSP pages. You can provide XML data as an URL or as a tag's body. For example,
the following code requests title tag from RSS feed:
<%@ taglib uri="taglib.tld" prefix="p" %> <p:ImportXml url="http://feeds.feedburner.com/AbavanetTechnicalCorner" expr="//title"/> Tags are: ImportXml Body tag evaluates XPath expression against the given XML file. Tag's body describes your XML data. Parameters are: 1) url Optional attribute. Describes an URL for your XML file
for downloading: Library: xpathtag.jar Description: taglib.tld See also Coldtags suite - the largest collection of custom JSP tags.
|
Also in Coldtags:
|