SAX parser problem in JDK1.5
I have parse the xml file using SAX in jdk1.5 environment. During the parsing, it missed the some text content.
for example
<employeeid>
<empid>1001</empid>
<empid>1002</empid>
</employeeid>
If i have parse the above xml file using SAX in jdk1.5 environment. The output is
1001
100
during the parsing , SAX parser misses digit of 2.
if i have parse the above xml file using SAX in jdk1.4 environment , it is working fine.
what is the problem in jdk1.5
please help
bala

