hi ,
What is the difference between XPATH and DOM XML ? both give ability to navigate the document and plus that Dom also give ability to create,insert,delete and update any part of xml document ?
Printable View
hi ,
What is the difference between XPATH and DOM XML ? both give ability to navigate the document and plus that Dom also give ability to create,insert,delete and update any part of xml document ?
XPath is simply the ability to traverse nodes from XML and obtain information. It's whole base is for information retrieval.
DOM, whether XML or HTML, is based upon traversing for the purpose of reading or writing information.