Activity Type: Transformation
Apply an XSL transform to data output from another activity.
<xslTransform name="transform"> <inputXSLT from="deliverXSLTOutput"/> <inputXML from="statementOutput"/> <output name="transformedOutput"/> </xslTransform>
<xslTransform name="transformInLine">
<inputXSLT>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text" indent="yes" />
<xsl:template match="/">
<xsl:value-of select="RowSet/data/row/col[1]"/>
</xsl:template>
</xsl:stylesheet>
</inputXSLT>
<inputXML from="statementOutput"/>
<output name="transformedOutput"/>
</xslTransform>
Element xslTransform:
This activity can operate with any data resource accessor.
OGSA-DAI/schema/ogsadai/xsd/activities/xsl_transform.xsd
uk.org.ogsadai.activity.transform.XSLTransformActivity
uk.org.ogsadai.client.toolkit.activity.transform.XSLTransform
| Up: Activities | ||
| © International Business Machines Corporation, 2002-2006. | © The University of Edinburgh, 2002-2006. |