I am working on a project where I required to parse XML response coming from web service. I don’t know anything about the structure of response. I am given XML elements to gather data for, and the data is relational so elements represents columns in relational table.
I tried the WSDL approach where I can parse for method name and its response type. Based on that I can parse with NSXMLParser. The problem was I didn’t find any WSDL parser which does this for me.
Any suggestions?!
Thanks,
Jignesh
I like to use this OpenSource library on GitHub
It will allow you to turn the
XMLstring into an NSDictionary which you can the use dynamically.