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.
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.
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.