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

[590 byte] By [bala_krishnana] at [2007-10-2 15:37:32]
# 1
What I expect the problem to be was discussed recently in a topic titled "SAX Parser Problems" that was started on March 14 at 6:59 AM by JackoBS.Read that and see if it fixes your problem. If so, it is not a JDK1.5 problem, but a user error.Dave Patterson
d.pattersona at 2007-7-13 15:17:01 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Thanks for replyI read that you metioned topic. It was very helpful for me. This problem was solved.
bala_krishnana at 2007-7-13 15:17:01 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...