Subject:Help needed in pattern matching Author:rachael smith Date:30 Jan 2009 02:41 AM
The XML looks like this
<?xml version="1.0" ?>
<order>
<customer>
<identifiers system="SIEBEL">
<identifier name="MSISDN">91233441</identifier>
</identifiers>
</customer>
<customer>
<identifiers system="ARBOR">
<identifier name="MSISDN">92456666</identifier>
</identifiers>
</customer>
</order>
Have written condition.
<xsl:if test="/order/customer/identifiers[@system='SIEBEL']/identifier[@name='MSISDN']='91'">
<xsl:element name="VDF123">ViXEN</xsl:element>
</xsl:if>
does not work...Is the condition right?Can anyone help?