Transform a XML (File|org.w3c.dom.Node|String) using a XSL of transformation (File|org.w3c.dom.Node|String) and returns a temporal file with the converted file.

1 dom.transform

<dom.transform encoding='encoding'>
    <xml /> !
    <xsl /> !
</dom.transform>
Example

Convertion of a XML document using a XSL to generare a HTML file.

Copy
<xsql-script name='dom_transform'>

    <body>

        <set name='resul'>
            <dom.transform>
                <file name='data.xml' type='absolute' />
                <file name='data.xsl' type='absolute' />
            </dom.transform>
        </set>

        <!--
            Returns:

<html xmlns:xalan="http://xml.apache.org/xalan" xmlns:lxslt="http://xml.apache.org/xslt">
<head>
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Sample transform</title>
</head>
<body>
    <table style="border: 1px solid green;">
        <tr>
            <td>hello</td>
            <td>world</td>
        </tr>
    </table>
</body>
</html>
        -->
        <-- PRINT BY SCREEN -->
        <string><file.bytes.read><resul /></file.bytes.read></string>
        
        <!-- STORE IN FILE  -->
        <file.bytes.write append='true'>
            <file name='c:/jas/transformat.txt' type='absolute' />    
            <string><file.bytes.read><m_resul /></file.bytes.read></string>
        </file.bytes.write>        

    </body>
</xsql-script>