I want a common Parser which parse any type of XMl response. At present I am using XmlPullParser.. in which I am passing xmlresponse from webservice and checking XmlPullParser.START_TAG and store data in the Beans Object accordingly..
for that I am creating one bean, one parser for each of the webservice I am parsing..
I've gone through one common parser over iOS App which input all the start tag as array to any webservice and storing data in key-value pair, and gives one object which contains all the data.. so no need of creating Bean and Parser separately..