Hello All...
I have following kind of xml response from some http://url.com
<ArrayOfMovie>
<Movie>
<movieID>7</movieID>
<name>Badmaash Company</name>
<starCast> Shahid Kapoor, Anushka Sharma, Meiyang Chang, Vir Das </starCast>
<releaseDate>2010-05-07</releaseDate>
<moviePoster>bc/bc.jpg</moviePoster>
<movieGenere>Drama</movieGenere>
</Movie>
</ArrayOfMovie>
Now I want to parse this data and display it to blackberry main screen.
I have tried it using kxml and SAXParser. But unfortunately I couldnot parse it properly.
Can anybody help me to solve the above issue with some sample code or tutorial ?
Thanks in advance....