The transform tag

Overview

This tag is used to transfor xml using an xslt

Tag Usage

<jee:transform xmlFile="path to XML file"|xmlUrl="URL to XML" 
  xsltFile="path to XSL file"|xsltUrl="URL to XSL file"/>

xmlFile – Path to XML file must be relative to web application root and start with a /

xmlUrl – URL to XML

xslFile – Path to XSL file must be relative to web application root and start with a /

xslUrl - URL to XSL

Example

The following code shows an example of using this tag:  

<%@ taglib uri="jeenius" prefix="jee" %> <p>
<jee:transform xmlFile="demo_transform.xml"
xsltFile="demo_transform.xsl"/> </p>