req=context.createSubRequest("active:xslt or xsltc");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);
Purpose
The xslt accessor is used to perform an XSLT transform on the operand document.
XSLT is a W3C standard for transforming XML documents.
The operand is the XML resource to be transformed, operator contains the xslt transform document.
All other arguments are passed as parameters into the XSLT. These parameters can be referenced
within the XSLT by declaring a top-level <xsl:param> in the XSLT stylesheet, the name of the xsl:param must
be the same as the name of the argument. Here's an example stylesheet which simply returns the argument param
back as the transform result.
The underlying Xalan XSLT accessor supports transform compilation. Compiled transforms can be used by specifying
xsltc as the instruction type. Use of compiled transforms can lead to significant performance gains, but may
come at the cost of an initial compilation overhead. Your application context will determine whether to use
interpreted or compiled transforms.
Transform Caching
All XSLT transformations, both interpreted and compiled, are cached and frequently used transforms
will not need to be rebuilt. This transparent caching gives good performance gains.
An example of performing sequential pipelined xslt
transforms. The response of the first transform is put in the variable var.
The variable is then used as the operand to a second xslt tansform with the result
being sent to the response.