Changes between Version 1 and Version 2 of XmlParser


Ignore:
Timestamp:
Jun 19, 2007, 7:26:16 AM (17 years ago)
Author:
Didge
Comment:

added speed comparison and final

Legend:

Unmodified
Added
Removed
Modified
  • XmlParser

    v1 v2  
    2626  '''***''' ''Google avoids Xerces because it considers it to be insecure in the face of hostile XML documents, but considers Expat safe. Presumably based on an indepth security review.''
    2727
    28 === SAX or DOM ===
     28== Speed ==
     29[http://xmlbench.sourceforge.net/results/benchmark200402/index.html Speed comparison of different XML parsers]
     30
     31== SAX or DOM ==
    2932Which technic should be used for reading the KML files?
    3033 * I (Jens) guess SAX would be best, because of the memory consumption of DOM
    3134 * SAX is more complex to use in case of KML
     35
     36== Final ==
     37I will use expat, because of the decision for SAX, the speed and it is more secure than Xerces.