Hi Team,
I am trying to create a PDF file from variables in the process as per given in the User guide.
But got error " Could not compile stylesheet".
Following is the XSL script
--------------------------------------------------
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="
http://www.w3.org/1999/XSL/Transform">
<xsl:template match="my_var_main ">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th style="text-align:left">Title</th>
<th style="text-align:left">Artist</th>
</tr>
<tr>
<td><xsl:value-of select="Name"/></td>
<td><xsl:value-of select="Branch"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
--------------------------------------------------------------
and my variable is like
--------------------------------------------------------------
{"my_var_main":{"Name":"Sagar","Branch":"Arts","Mail_id":"
sa...@gmail.com"}}
--------------------------------------------------------------
Could anyone help me to solve the problem?
Regards,
Sagar