> From: Bruce Morrison > Basically loading the xml into DOM 1 > Loading docbook.xsl into DOM 2 > and then (attempting) to spit out the transform using DOM1.transformNode(DOM2)
If you're using the HTML stylesheets, the output is not XML so you can't transform to a DOM. Use DOM1.transformNodeToObject(Response) instead. -- Rob Smith
