JSTL XML


Standard Syntax:
     <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>

XML Syntax:
     <anyxmlelement xmlns:x="http://java.sun.com/jsp/jstl/xml" />

JSTL 1.1 XML library

Tag Library Information
Display NameJSTL XML
Version1.1
Short Namex
URIhttp://java.sun.com/jsp/jstl/xml
 

Tag Summary
choose Simple conditional tag that establishes a context for mutually exclusive conditional operations, marked by <when> and <otherwise>
out Like <%= ... >, but for XPath expressions.
if XML conditional tag, which evalutes its body if the supplied XPath expression evalutes to 'true' as a boolean
forEach XML iteration tag.
otherwise Subtag of <choose> that follows <when> tags and runs only if all of the prior conditions evaluated to 'false'
param Adds a parameter to a containing 'transform' tag's Transformer
parse Parses XML content from 'source' attribute or 'body'
set Saves the result of an XPath expression evaluation in a 'scope'
transform Conducts a transformation given a source XML document and an XSLT stylesheet
when Subtag of <choose> that includes its body if its expression evalutes to 'true'
 

Tag Library Validator
org.apache.taglibs.standard.tlv.JstlXmlTLV Provides validation features for JSTL XML tags.
 


Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-3 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.