[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

msxsl:script and selectSingleNode problem

Subject: msxsl:script and selectSingleNode problem
From: "Murali Korrapati" <murali.korrapati@xxxxxxxxx>
Date: Fri, 3 Oct 2003 16:08:06 -0400
msxsl script
Hi,
   I am getting this strange problem. Let me give my xml and script function before I explain my problem.

   my xml:

	<Items>
		<book>My book Title</book>
		<pencil>My pencil length</pencil>
		<pen>My pen color</pen>
	</items>


  my xslt:
	<xsl:stylesheet version="1.0" xmlns="" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:scrdt="urn:reval-com:scripts:datatypes">
	<xsl:template match="/">
			<xsl:call-template name="callInit">
				<xsl:with-param name="itemNode" select="."/>
			</xsl:call-template>
	</xsl:template>
	<xsl:template name="callInit">
		<xsl:param name="itemNode"/>
		<xsl:value-of select="scrdt:init($itemNode)"/>				
	</xsl:template>
      <msxsl:script language="JScript" implements-prefix="scrdt"><![CDATA[
	function init(itemNode)
	{
		if( !itemNode.length) return "";

		var val = itemNode.item(0).selectSingleNode('book');

		//var val = itemNode.item(0).firstChild;
		
		if(val!=null)
			return val.text;

		return "Error";
	}
	]]></msxsl:script>

	</xsl:stylesheet>

  
     So my problem is, when ever I transform my xml with this template, it is printing "Error". It seems like it is not able to get to "book" node when I use selectSingleNode("book"). But variety is when ever I access it as .firstChild, it is recognizing  the node  and printing the correct value. 

     I have no idea what is going on there. Any leads will be appreciated.


~Mur


	

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.