Re: [dom4j-user] Turning off namespaces when reading in an XML file.

2004-12-09 Thread Maarten Coene
Hi Alan, I don't think this is possible with the current version of dom4j. If you really need it, please add a feature request at sourceforge to make sure we won't forget it regards, Maarten Alan Bron wrote: Hi: Does anyone out there know how to turn off namespace checking when using dom4j? The

[dom4j-user] Turning off namespaces when reading in an XML file.

2004-12-08 Thread Alan Bron
Hi: Does anyone out there know how to turn off namespace checking when using dom4j? The equivalent code segment for a Xerces user would be: import org.apache.xerces.parsers.DOMParser; . DOMParser parser = new DOMParser(); parser.setFeature("http://xml.org/sax/features/namespaces";, false ); I