Saturday, December 30, 2006
XPATH:
xpath uses the following steps to select the node of the xml.
1.elements.
2.text
3.attributes
4. name spaces
5.processing Instructions
6.comments
7.document root
* - is used to retrive all the elements in the xml.
@* - is used to retrive all attribute nodes in the xml.
XML stands for extensible Markup Language
XML is a markup language like HTML.
It won’t have any predefined tags. You must define the tags.
XML was designed to describe data and to focus on what data is.
If you want to ignore some thing from the parser, you can use CDATA.
Namespaces are used to avoid the Name conflicts in XML.