Why XML!!!!
843834Jun 15 2001 — edited Jun 20 2001Doesnt XML duplicate lot of data? I have worked with EDI files and I feel so. See the example below:
<Address>
<Name>Sanjaya</Name>
</Address>
The only meaningful data is Address-Name-Sanjaya!!
For each of the tags Address/Name we duplicate the data again.
Assume I always write a WELL-FORMED XML. Then I know each tag ends before its parent ends, right? So cant I just utilise this knowledge as below:
<Address>
<Name>Sanjaya</>
</>
A depth based stack push-pop will very easiliy be able to produce the same effect as the first case.
Thoughts????????
...........................................
sanjaya_ganesh@yahoo.com