The Transform XML activity fails with "com.tibco.genxdm.processor.xslt.err.XTSE0150: XTSE0010: message pattern not found" exception for certain XSLT.

The Transform XML activity fails with "com.tibco.genxdm.processor.xslt.err.XTSE0150: XTSE0010: message pattern not found" exception for certain XSLT.

book

Article ID: KB0094017

calendar_today

Updated On:

Products Versions
TIBCO ActiveMatrix BusinessWorks -
Not Applicable -

Description

Resolution:

Modify the XSL stylesheet declaration (line 1) as shown below in test.xsl .



++++++++++++++++++++

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/">

  <html>

  <body>

    <table border="2" bgcolor="yellow">

      <tr>

        <th>Title</th>

        <th>Artist</th>

      </tr>

      <xsl:for-each select="CATALOG/CD">

      <tr>

        <td><xsl:value-of select="TITLE"/></td>

        <td><xsl:value-of select="ARTIST"/></td>

      </tr>

      </xsl:for-each>

    </table>

  </body>

  </html>

</xsl:template>

</xsl:stylesheet>


++++++++++++++++++++

Issue/Introduction

The Transform XML activity fails with "com.tibco.genxdm.processor.xslt.err.XTSE0150: XTSE0010: message pattern not found" exception for certain XSLT.

Additional Information

http://www.w3.org/TR/xslt