Link to home
Start Free TrialLog in
Avatar of jschneider
jschneider

asked on

XSLT Stylesheet parameter string to nodeset

If I setup a XSLT Stylesheet parameter and pass a well-formed XML string, then try and perform a nodeset function, it seems that the nodeset function does not work. All I get is a string back - not a nodeset. Whereas, if I assign a variable in the XSLT and type in a well formed XML string, the nodeset function does work. Any ideas?
Avatar of ramazanyich
ramazanyich
Flag of Belgium image

how do you call nodeset ? which XSLT transformer are you using ?
Avatar of dualsoul
dualsoul

i think you need to assign node set to parameter, try to use addParameter("innerXml",Node);
ASKER CERTIFIED SOLUTION
Avatar of MogalManic
MogalManic
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
heh...exactly as i've said ;)
Avatar of jschneider

ASKER

I accepted MogoManic's answer though it make it harder for me to develop my solution. Now I've got to post another question based on this answer.  Thanks!