• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

//// is not working in MSXML

 
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Have anyone tried picking a node //// in XSL on IE
i mean
<xsl:when test="////A/@B">
do something
</xsl:when>
is not working in IE(msxml4.0),but the same xsl file is working with xalan.
Moreover if u use xsl:choose tag,then xsl:when is optional in xalan but in msxml its mandatory.
Am I right ?
Regards
Balaji
 
Balaji Loganathan
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Related to my previous post i found.
Would be happy if someone could comment.
One:
Using //// will work only for xalan,In msxml,saxon,xt etc,, u need to use //.//.
Example:
XML:

XSL:

Second.
I made it sure that MSXML or saxon or xt doesn't allow a variable to be defined twice in different context.
but Xalan allows it.
Example:
input:

output using xalan: Second Variable
Why MSXML is very faster than xalan or saxon or xt etc.,??
escp while coonverting xml to fo or html or xml.
 
Balaji Loganathan
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Would be helpful if someone reply for this question.
Regards
Balaji
reply
    Bookmark Topic Watch Topic
  • New Topic