[xsl] BASE64 Encoded Content REPLACEMENT

Subject: [xsl] BASE64 Encoded Content REPLACEMENT
From: Senthilkumaravelan Krishnanatham <senthil@xxxxxxxxx>
Date: Mon, 13 Nov 2006 10:53:47 -0800
Hi All,
I have the following structure in my XML and i need to translate the following object into


Input content
<?xml version="1.0" encoding="UTF-8"?>
<broadcast>
  <content_vars>
   <content name="subject"><html>Hello [[BUYERS_NAME]]</html>
</content><!--BASE 64 encoded-->
   <content name="text">Hello [[BUYERS_NAME]]</content><!--
encoded->
  </content_vars>

    	<ORDER_FEED>
<ORDER>
<ORDER_HEADER>
<BUYERS_NAME>Senthil</BUYERS_NAME>
<WEB_ORDER_NUMBER>W12345<WEB_ORDER_NUMBER>
</ORDER_HEADER>
<!--Line Items-->
</ORDER>
</ORDER_FEED>
</broadcast>


<?xml version="1.0" encoding="UTF-8"?> <htmlbody> <html>Hello Senthil </html> </htmlbody> <htmlbody> <textbody> Hello Senthil </textbody >


Could you please help me in decoding the base64 encode and replace the variable with the associated enclosed content.
I have gone through Mukul website and I am still strugging for the decoding of BASE64 content and replace the [[]]
content with the value in it.


Any eye opener suggestion are welcome.

Thanks in advance.

Current Thread