tags:

views:

11

answers:

1

hello i have problem during parsing the xml with QueryString like (http://kkk.xyz.no/response.php?token=article&sectionid=4) in iphone app.

The QueryString are passed from program at runtime.

A: 

One possibility is that your XML is not escaped properly. The & character should be escaped in XML as &. If the parser you are using expects this, it could fail when you attempt to parse unescaped data.

Ryan Brunner
Hardik Patel