my requirement is to parse xml data from the server side and display it in Blackberry, I am using SAX parser to perform this operation. I am using an example to explain the scenario.
<Name>ABC</Name>
<Company>TCS</Company>
<Name>DEF</Name>
<Company>E&Y</Company>
In the above example, it is possible to read all the attribute except the “E&Y”.
Your xml is corrupted. Check for xml escaping.
Proper xml should look like:
Fix your xml and the parser becomes to work OK.