Error in querying tamino

Hi, I tried to do a simple query to print out the value of one of the tags, and got an error which i couldn’t solve.I had included the TaminoLib.js. This is the code…



The error msg was: Wrong number of arguments or invalid property assignment.

hi, I m sorry i gave the wrong code. This should be the one…



Error msg: Wrong number of arguments or invalid property assignment

Thanks…

Hi,
The only problem I can see is that childNodes is a Property of the MS XMLDOM, not a Method, so you should code:
var nodeList=xqlResult.childNodes;
and later…
nodeList = xqlResult.childNodes;

Then your code works for me.
HTH
Bill Leeney