cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

What is an XML Parser?

what is it's use?

0 Likes
View Entire Topic
Former Member
0 Likes

XI is middleware tool to send data from one location to another Basically a middleware tool.

and the data that XI send has some structre like

firstname:XYZ

Middlaename:ABX

lastname:PQR

All this data is represent as XML ( A way to store the data with tag here it is firstname last name

So XI uses XLL parser to parse this data

After parsing XI will come to know what is first name what is last name

So actually dat is represent as below in XML

<firstname>XYZ</firstname>

<Middlaename>ABX</Middlaename>

<lastnamePQR</lastname>

Above is the defination of data that XI is going to send

But in case data is wrong like

<Middlaename>ABX</Middlaename>

<firstname>XYZ</firstname>

<lastnamePQR</lastname>

Note Here ABX is first line

and this data is wrong

XI will find this wrong data with help of XML parser which has correct defination of the data

in case data is wrong parser will give error that data is wrong

Ps: If helful please give point