Questions about GDataXML, Google’s XML processing library, may have this tag.
Questions tagged [gdataxml]
63 questions
0
votes
1 answer
GDataXML string values are not saved into data on [GDataXML XMLData]
I have GDataXMLDocument created from XML file.
XML being read from file:
I need to add new "Page" tag (programmatically).
XML after new "Page" added:

Povilas
- 445
- 3
- 17
0
votes
0 answers
GDataXML addchild
I have an XML file. Root is called document. document has several elements and nodes. In the middle, there are n number of documentFile elements. documentFile has some nodes. I would like to add 0 or more documentFile elements right after the last…

Zia
- 14,622
- 7
- 40
- 59
0
votes
1 answer
Simple way to modify XML in iOS
I get an XML file with a huge amount of data. I would like to add some entries to it. I have looked at GDataXML and a few others but cant seem to find something that will allow me to add entries without having to fully map the XML and then…

Zia
- 14,622
- 7
- 40
- 59
0
votes
1 answer
Parsing using GDataXML with XPATH
I have an XML file with multiple entry nodes:
2013-12-19T13:30:20-05:00
This is a title
This is the content
Valentina
…

Adrian
- 19,440
- 34
- 112
- 219
0
votes
1 answer
GDataXML iOS getting value
I would like to get the "0" value in this XML using GDataXML in iOS :
0
I do
if ([unePosition elementsForName:@"idagencedepart"])
{
NSLog(@"position :…

Romain
- 151
- 1
- 12
0
votes
1 answer
GDataXML updating xml data
I am trying to update an xml file. After suggestion I ended up choosing GdataXml.
So I am trying to update options.xml file.
Original File
Tom
I need to change "Tom" to "Jim" and save in the same…

user1771823
- 139
- 1
- 13
0
votes
2 answers
how to access images by xml parsing?
in my ios app, i am trying to access the images from following XMl file
how can i fetch the image in tag?
Gomolo Photo Gallery
http://www.gomolo.com/
…

Ashish P
- 1,463
- 1
- 20
- 29
0
votes
1 answer
GData adding \ to end of element
Getting a parsing error after connecting to web service. I won't post that problem (yet) as I'm running down possible problems.
One that I noticed with displaying the individual GData elements, is that it is putting a "\" at the end of the…

BlizzofOZ
- 115
- 1
- 2
- 13
0
votes
1 answer
iOS Simple XML Parsing For Weather
I have done xml parsing before using some guides from Ray Wenderlich, but those are usually for when there are multiple items involved. I am working on having an app simply display weather conditions at a given time, and the feed's XML just has…

user717452
- 33
- 14
- 73
- 149
0
votes
2 answers
Parsing XML using GDataXML returns a NSString object with a retainCount of 95.How to ensure it gets released?
The NSString object that is got by the following code has got a retainCount of 95.
for(GDataXMLElement *ele in [doc.rootElement elementsForName:@"myKey"])
{
NSLog(@"myKey %d",[[[ele.children objectAtIndex:0] stringValue] retainCount]);
…

sujith1406
- 2,822
- 6
- 40
- 60
0
votes
2 answers
Problems parsing XML in Objective - C
I am currently trying to make a simple "Server Status" app for a game I play, All it needs to do is parse XML from a URL and output the result. I am currently stuck on these errors which I think have something to do with the way I…

Jared Jackson
- 11
- 3
0
votes
1 answer
iOS GDataXMLElement set element value
I'm using GDataXML in iOS and I'm trying to figure out how to change a node's value (i.e. the content of the equivalent element in the original XML file). I have an NSArray of elements that were returned from an XPath query. However, I can't seem…

JMLdev
- 846
- 2
- 10
- 21
0
votes
1 answer
Error with GDataXMLDocument parsing
I want to access this xml page:
http://www.priorbank.by/CurratesExportXml.axd
I write:
NSArray *exchangeRateTableStringNodes = [document nodesForXPath:@"//LIST_R_DATE/R_DATE/LIST_E_CHANNEL/E_CHANNEL/LIST_RATE/RATE" error:nil];
But I get 115 wrong…

Gargo
- 704
- 6
- 16
0
votes
1 answer
Get an XML Element via XPath when attributes are irrelevant
I'm looking for a way to receive a XML Element (the id of an entry) from a YouTube feed (e.g. http://gdata.youtube.com/feeds/api/users/USERNAME/uploads).
The feed looks like this:
user1405263
0
votes
2 answers
GDataXml Parsing Issues in iPhone
here this is below the code i need to parse the section and Company Sub data Using GDataXml in iOS.
-
Right
Wrong
0
-
…

umer sufyan
- 1,005
- 1
- 12
- 22