BaseX provides two parsers to import XML data:
* By default, the internal, built-in XML parser is used, which is more fault-tolerant than Java's Java’s XML parser, . It supports standard HTML entities out-of-the-box, and is faster in most cases. In turn, it does not support all oddities specified by DTDs, and cannot resolve [[Catalog_Resolver|catalogs]].* Java's standard Java’s [http://download.oracle.com/javase/6/docs/api/javax/xml/parsers/SAXParser.html SAXParser] can also be selected for parsing XML documents. This parser is stricter than the built-in parser, but it fails for refuses to process some large documents.
===GUI===