Intelligent Notification Services

SMS transcoder stylesheet


The stylesheet file, SMSTranscoder_SS.xsl contains the following stylesheet code.

<?xml version="1.0"?> 
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output omit-xml-declaration="yes" method="text"/>
<xsl:template match="message">
From: <xsl:value-of select="from"/>
Sub: <xsl:value-of select="subject"/>
Msg: <xsl:value-of select="text"/>
<xsl:for-each select="url">
      <xsl:text>
	</xsl:text><xsl:value-of select="."/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>