Dear Sir Please Help me :- I have lot of Search But Not found the Code According To My Question
I have One XML :=
<?xml version="1.0"?>
<report>
<persondetail>
<name>Vishal Singh</name>
<surname>9990806510</surname>
</persondetail>
<persondetail>
<name>Vishal Singh</name>
<surname>9990806510</surname>
</persondetail>
</report>
and One XSl====>
<xsl:stylesheet version="1.0" xmlns
sl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="report/persondetail">
<table width="100%" border="1" height="2%" cellpadding="2">
<tr>
<td width="10%"> <xsl:value-of select="name"/> </td>
<td width="90%"> <xsl:value-of select="surname"/> </td>
</tr>
</table>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
I want to Create PDF Using The XML and XSl from A Specific Location And Signing, WaterMark Of PDF also.
Please Provide me Code. I will be very Thankful to you
Thanks