Ignore DTD specification in scala

Eysanesm

New Member
I'd like to occasionally ignore the dtd specification while parsing an xml file using Scala. I know that this can be done pretty easily with the java interface by doing \[code\]DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();dbf.setValidating(false);dbf.setFeature("http://xml.org/sax/features/namespaces", false);dbf.setFeature("http://xml.org/sax/features/validation", false);dbf.setFeature("http://apache.org/xml/features/nonvalidating/load-dtd-grammar", false);dbf.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);\[/code\]However, I'm not sure of how to do this easily with Scala's xml library. If possible i'd like to continue using the scala xml library as it's significantly better.Thanks in advance!
 
Back
Top