Intelligent Notification Services
The stylesheet file, WAPTranscoder_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 method="xml" indent="yes" />
<xsl:template match="message">
<wml>
<card id="Notification" title="Message">
<p>
From:<xsl:value-of select="from"/>
<br/>
Sub: <xsl:value-of select="subject"/>
<br/>
Msg: <xsl:value-of select="text"/>
<br/>
<xsl:for-each select="url">
<xsl:text>
</xsl:text><xsl:value-of select="."/>
<br/>
</xsl:for-each>
</p>
</card>
</wml>
</xsl:template>
</xsl:stylesheet>