How to convert Scala Scales XML to DOM/SAX
问题 I am trying to transform scales-xml documents into DOM documents or SAX objects based on the example code here: http://scala-scales.googlecode.com/svn/sites/scales/scales-xml_2.9.2/0.4.4/XSLT.html The source only and roundtrip examples work fine, but the scales=>DOM code I wrote returns an empty document, and the scales=>SAX code raises the following exception: ERROR: 'org.xml.sax.SAXException: setResult() must be called prior to startDocument().' Is what I am trying to do supported? If so,