0
votes
2answers
33 views

How Can I process all elements in xml?

I have an xml like this, but my XMLParser jumps 1-2 elements, and not process it. I think it works fine, but it not. What do i wrong? Here is the xml, and i'd like to get the all item tag, and it's ...
0
votes
1answer
28 views

ios NSURLConnection asychronous request, displaying data in a UITableView

this question might sound silly but I cant seem to get the idea of asynchronous downloading, parsing and displaying the data. There are a lot of articles about asynchronous parsing and I have read a ...
-7
votes
1answer
71 views

What is mistake in below code in iphone [closed]

I am new to i phone programming.I have created a web service and a function in it that should return a records retreived from a pervasive database. But i am not getting output. Its showing some ...
0
votes
2answers
47 views

How Can I parse Special characters in XML by obj-c?

I have an XML tag like I can parse this element, but i get only the s character in my string. <title>Transport information Classic World&#039;s </title> And I parsed it like ...
0
votes
2answers
36 views

IOS - long application launch as a result of XML parsing

my app is based on data, that I get from the web, in XML. I implemented the NSXMLParser, and it works really good. the only (major) problem, is that the launch of the app takes about 25 seconds!!! ...
0
votes
1answer
33 views

ios - How to parse HTML file?

I'm getting HTML content in below format. wsse:BinarySecurityToken wsu:Id=&quot;uuid:07747f2a-4be4-48fa-9654-5e12235f6040&quot; ...
0
votes
4answers
108 views

ios - How to parse HTML content in ios?

How do I parse HTML file? I'm getting an HTML file in the below code,I just want to get data in between BinarySecurityToken XML node. - (void)connectionDidFinishLoading:(NSURLConnection ...
0
votes
2answers
42 views

ios - How to get value from XML node?

I just want to get value from XML node(wsse:BinarySecurityToken) that is given in the below code. <head> <title>Working...</title> </head> <body> <form ...
-1
votes
1answer
40 views

ios - How to decode XML document? [duplicate]

I'm new to iPhone development,I'm trying to get access token from Google,When I logged in,I'm getting HTML content,in that HTML content I want to get token that is contained in BinarySecurityToken ...
0
votes
1answer
30 views

How to parse a SOAP response containing an XML Document inside the response tag

I am sending a SOAP request to the server and getting the following response. I am parsing the response using the DDXMLParser. However, the parser interprets this as an invalid XML. I am pretty sure ...
2
votes
0answers
28 views

How can I do summation fields of soap web service in ios?

I want to do summation fields of web service. I have 4 label.It show me fields of soap web service.My 3 labels it is ok but I dont know how I do collect for Total ?? ...
0
votes
1answer
31 views

inserting the value in to a perticular node in xml file

i have got the problem in inserting a value in to xml can you help me with that please. i am new to iPhone development in my situation i have got the xml like ..... <Group ...
0
votes
1answer
28 views

getting each iteration of XMLParser of a specific element

I'm trying to parse XML to my app. One of the tags (the last tag) is an article, with a length of 500 words (+,-). The thing is, that the parser iterates when ever it "decides", so all i get is the ...
0
votes
1answer
21 views

Using TouchXML how can I count tags that starts with specific texts

Suppose I have an XML file that has tags Reg0, Reg1, Reg2. . . The "Reg" prefix is fixed. How can I count the number of tags that starts with Reg text using TouchXML? I can search for Reg text in my ...
0
votes
0answers
27 views

HTML decode WOX Objective-C

I'm developing an iOS application working with a Java server that send XML objects HTML encoded (WOX standard : http://woxserializer.sourceforge.net). This standard looks like this : <object ...
0
votes
1answer
83 views

xml parsing in iOS with too many tags with the same name

I have got the xml parsing, but a bit difficult to parse the xml below thanks for your suggestions <?xml version="1.0" encoding="UTF-8"?> <AllJobs> <Mainjobs> <job1 ...
0
votes
2answers
90 views

retrieve xml file using nsxmlparser in ios

i am getting problem while reading xml files through nsxmlparser in ios, <PRODUCTS> <PRODUCTSLIST> <PRODUCTDETAILS> <headertext> test header ...
1
vote
1answer
148 views

XML into JSON conversion in iOS

I need to convert XML response to JSON and sand to the json To javaScript code. My XML response: <cell> <Result>True</Result> ...
3
votes
1answer
95 views

XML generation and parsing from Core data in iphone

I'm creating a simple iOS application consisting of a few UITableViewControllers. The information displayed in the view controllers will come from a xml file (that I'll include in the project's ...
1
vote
1answer
36 views

XML generation from data in core data iphone

I am going to make an application and in that I want to store user's input in XML file and then parse it to another user,So I am confuse How can I do it, and which XML method should I use? NSXML ...
0
votes
0answers
48 views

xml downloading iphone

I am getting some errors in downloading the Xml file from the URL. It is downloading the xml file but the starting of the xml file starts from line 2. it should start from line number 1. Like : ...
0
votes
1answer
85 views

how to parse xml in iPhone ,

i have string which contain xml responce , (asmx web service) i am parsing xml through APXML lib. when i get root element that give me body tag , i do not want body tag , i want to get my actual ...
0
votes
1answer
76 views

Parsing data/xml received from web service REST

I'm trying to understand the procedure for parse data and xml received from a web service ( REST ). I have followed different tutorials, but they didn't resolve my doubts. In fact i have implemented ...
0
votes
1answer
198 views

xml parser in ios

There is the code `-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary ...
0
votes
0answers
39 views

Can't Pass URL from XML data to different class

Having a bear of a time figuring this out. I used RaptureXML to parse a podcast feed and grabbed data to use in my app. It is for a church to play sermons once you click in the NSArray. Everything ...
0
votes
1answer
48 views

RaptureXML Problems parsing a certain rss feed

I'm trying to parse a certain rss feed of a popular german news site (taz.de). Unfortunately, their description tag doesn't only contain plain text but a mixture of anything, including pictures, links ...
0
votes
2answers
53 views

Parse XML and Storyboard push [closed]

I am trying to create a login page which involves an XML. The XML contains combination of Username and Password that are acceptable. I need the login page to check the credentials from the XML and ...
1
vote
1answer
59 views

NSXMLParser, how to know what encoding and version are written in the <?xml> tag (if present)

As the title says, when I parse a file using the NSXMLParser parser, is there a way to know if the tag is present? And, if yes, how can I obtain the values of its attributes (if present)? I tried ...
0
votes
2answers
68 views

How Do I Parse XML for Multiple Attributes?

heightI'm a noob to iphone development and I am trying to parse an xml with elements that contain multiple attributes. I have several tutorials on parsing XML, but none of them show the steps to ...
1
vote
3answers
110 views

Skiping some content of XML while parsing

Hi I have a XMl response string which contains a lot of useless elements, but as we know the NSXMLParser is designed n such a way that it visits every element, This process is really killing my speed ...
0
votes
5answers
148 views

Parsing XML into NSMutableArray

I'm having XML in my Web-Service in following format. <xml> <Menu> <pair> <MenuCategory shortname="Starters Menu" description_en="hgfhghgh" ...
0
votes
1answer
93 views

How parsing image from XML page

I am have rss page from wether site. <item> <title>Запорожье: Вечер 03 Mar, Sun</title> <link>http://www.gismeteo.ru/city/daily/5093/?462419</link> ...
1
vote
1answer
102 views

NSXMLParser: Parse specifc elements based on another element

I am parsing the following XML with NSXMLParser but would like to only parse certain elements and attributes based on a unique element found in the XML and then abort the parse. For example, my XML ...
0
votes
0answers
143 views

XML Parsing in iOS

I am trying to parse an XML which looks something like this. <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
2answers
215 views

XML Parsing by objective-C code

I just want to parse a String received from a Post Response, I know there are lib/classes like NSXMLParse and apple provides some example but not what I want, or I'm not ready to understand that code. ...
0
votes
0answers
50 views

How to find particular child element of root element in Gdataxml in iOS SDK

`<TrackingData> <Sensors> <Sensor subtype="ML3D" type="FeatureBasedSensorSource"> <SensorID>11</SensorID> <Parameters> </Parameters> ...
0
votes
2answers
192 views

Getting List of Objects from .net Web Service on iOS

I'm developing appointment app for ios. I use .net web service for getting data from database. I used it on Android and Windows Phone apps but I couldn't use on ios yet. It returns list of objects ...
0
votes
1answer
122 views

NSURL getFileSystemRepresentation:maxLength

Im having error with this code NSString *theURL = @"http://www.w3schools.com/xml/cd_catalog.xml"; NSData *theData=[NSData dataWithContentsOfFile:[NSURL URLWithString:theURL]]; ...
3
votes
4answers
507 views

Getting Data From .net Web Service on iOS

I have one .Net web service and I use it for mobile apps. I used it on windows phone and android apps but I didn't get data from it on iOS yet. For example, there is one method in my web service and ...
0
votes
0answers
63 views

Universal Rss feed parsing - iOS

Is there an RSS feed parser that can work on any rss links? Because not all site follow the same pattern (My assumption). There are sites where the media link is embedded in the description and ...
0
votes
0answers
110 views

Parse xml data by using TouchXml in iphone

Asking First Question to Stack Community, hope will help me some one. I am using touchXml Library to parse data. My delegate method like -(void)connectionDidFinishLoading:(NSURLConnection ...
1
vote
1answer
78 views

Parsing XML sometimes returns strange code

I'm parsing a very simple XML document with XCode. Sometimes it works just fine, other times it returns this: document.cookie='lllllll=9bb65648lllllll_9bb65648; ...
0
votes
2answers
49 views

Getting duplicate children in TouchXML

I have a CXMLDocument and the problem is that when I do this: for (CXMLElement* auxitem in [doc children]){ NSLog(@"NAME: %@", auxitem); } It gives me an empty CXMLNode and the CXMLElement with ...
0
votes
1answer
41 views

Manipulating files in XML in iOS

Hello I want to know if possible to manipulate XML as this way in iOS. 1.- Create the XML from nothing. 2.- Insert custom tags and info in an order. Example: creating xml in memory like an array ...
0
votes
1answer
144 views

Loading data returned as XML from ASMX web service into iPhone/iPad crashes app

So, in my app I retreive data from XML web service. Its very huge. Up to the order of 30-40000 records. On simulator it works fine. But on the device it is crashing. I use NSXMLParser. ...
0
votes
1answer
97 views

how can i use the Turkish Characters in XML parser?

i am new on ios programming and i am trying to parse a XML string:<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" ...
0
votes
2answers
228 views

How to parse multilevel xml in xcode

can you help me with this program i'm trying to parse an xml file with two levels (i don't know the term so i call that way) here's the sample of my xml file <?xml version="1.0" ...
0
votes
2answers
75 views

Images getting mixed up when scrolling in a UITableView

Hi found the answer here: Images getting mixed up in a UITableView - XML parsing I'm parsing an XML file with links to images which I'm putting into a UITable. For some reason the pictures are ...
0
votes
2answers
82 views

Do we need to give the request type either “json/xml”

My client is given one web service for my registration. I need to post the values. I am using the following code to post: -(IBAction)testingPurpose:(id)sender{ NSMutableDictionary ...
0
votes
0answers
97 views

Parsing XML with TouchXML, generating docs with children

I'm getting an XML document like this: <node label = "NAME1" description = "DESCRIPTION1" id = "1"> <node label = "SON1" description = "SONDESCRIPTION1" id = "S1"> <node ...

1 2 3 4 5