Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
2answers
15k views

iPhone Development - XMLParser vs. libxml2 vs. TouchXML

I cannot find comparison of these parsing technique. Which one is most commonly used? Regards. Mustafa
10
votes
4answers
5k views

Getting the value of an Element in Cocoa using TouchXML

I am using TouchXml because of the given limitations of NSXML on the actual iPhone. Anyway, I'm just starting out with Objective-C, I come from a C# background, and felt like learning something ...
6
votes
3answers
5k views

TouchXML parsing XML attributes

How do I use touchXML to parse this XML? I want to store all the attributes as key/value pairs in a dictionary. <Player PlayerName="Padraig HARRINGTON" CurrentPosition="1" CurrentRank="1" ...
5
votes
2answers
2k views

libxml/tree.h no such file or directory after integrating three20 library

i am getting Libxml/tree.h:No such file or directory error and other xml related error after adding three20 library to my project. i have added -lxml2 to other linker flags i have added ...
4
votes
5answers
1k views

iPhone - does TouchXML use an undocumented APIs?

Recently I've heard that Apple is using tools to search for references to undocumented APIs and are rejecting iPhone apps from the App Store because of it. The popular Three20 framework is causing ...
3
votes
2answers
309 views

How to parse HTML on iPhone using TouchXML or other libraries?

I have a dirty HTML code that is loaded from a foreign server (so I can't make a json file or clean the html code). My HTML's structure is like: <!-- SOME DIRTY HTML, CSS, JS, AND OTHER STUFF ...
3
votes
3answers
439 views

How to display Data from RSS Feed in Parts in Iphone Application

I am displaying RSS feeds in my table view. as there are hundred of feeds so my application takes lots of time to load them and display them i want to load just first 25 feed and display them in Table ...
3
votes
4answers
774 views

Cannot read XML File

got a little problem with receiving the contents of a xml file (using TouchXML). My first query works very well, looks something like this: NSString *url = [NSString stringWithFormat:STATION_ID, ...
3
votes
3answers
2k views

Strange iPhone memory leak in xml parser

Update: I edited the code, but the problem persists... Hi everyone, this is my first post here - I found this place a great ressource for solving many of my questions. Normally I try my best to fix ...
2
votes
1answer
317 views

Parsing subnode with TouchXML

I'm using TouchXML to parse my RSS. The new XML <channel> <item> <title> </title> <social> <views> <total_views>2</total_views> ...
2
votes
1answer
1k views

Warning about blocking item under version control (Xcode 4)

I just added TouchXML to my project and it's telling me that: warning: Obstructing: /**/Classes/Creation is blocking item under version control also, same thing for Tidy: warning: ...
2
votes
1answer
661 views

How do I pass arrays of values to SudzC-generated webservice classes?

I have a sudzc service class generated from a WSDL that accepts an ArrayOfInt and ArrayOfString objects as parameters. The service method signature is this: - (SoapRequest*) Search: (id ...
2
votes
1answer
207 views

TouchXML - Invalid XML does not return error object

Say I have an invalid XML. For some reason, TouchXML still sees it as a valid object. For example: NSString *str = @"?> obviously invalid!"; NSData *data = [str ...
2
votes
1answer
2k views

Strange error with initWithContentsOfURL

I'm currently working on reading some XML from an external API. The following code works fine: NSError *error = nil; NSString *xmlString = [[NSString alloc] initWithContentsOfURL:url ...
2
votes
1answer
2k views

Example of ASIHTTPRequest with TouchXML

I am currently using NSXMLParser mathods to parse my data something like this : But I found some good option as TouchXML . I googled for some good example or tutorial But I can't understand ...
1
vote
1answer
74 views

Difference between TouchXML and GDataXML parser

I have two options in front of me for parsing really fat XML file, TouchXML GDataXML It's lot of work to do because XML file is very huge. I thought of asking people who have already worked with ...
1
vote
0answers
167 views

iPhone libxml2 undefined symbols (with gdata, kissxml, touchxml, etc.)

I'm trying to use any one of the libxml based 3rd party XML parsers, but I can't because I think I have a libxml2 problem of some sort I set my other linker flags to -lxml2 and header search paths ...
1
vote
0answers
178 views

Is this XPath query on parsing XHTML wrong? using TouchXML

I have been trying to parse a XHTML doc via TouchXML, but it always can't find any tags via XPath query. Below is the XHTML: XHTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
1
vote
2answers
82 views

TouchXML over release problem

I'm getting an EXEC_BAD_ACCESS error when I release a CXMLDocument. Here's my very simple code which has no dependencies: @implementation TestViewController - (void)viewDidAppear:(BOOL)animated { ...
1
vote
2answers
69 views

Efficient process is NSXML or TouchXML

I am parsing a simple XML file, which one i can use for efficient parsing
1
vote
1answer
128 views

TouchXML deprecated?

I tried to download it and google says it's deprecated. Deprecated by what? What are the new replacement?
1
vote
0answers
141 views

How to usw TouchXML to parse opengis xls?

I'd like to parse a osm generated xml file. It has got the structure of opengis xls. I really don't know how to parse that with TouchXML. Hope you guys can help me on that… Here's some sample xml ...
1
vote
1answer
184 views

Why is this code crashing?

I'm loading an XML file containing about 600 small data sets, which is about 10,000 lines. The data is being used as annotation points on a map. I'm using the TouchXML library to handle the XML. Here ...
1
vote
2answers
412 views

TouchXML alive or dead

Is TouchXML still available? I cannot find an updated download source, either very old or 404 URL not found??? Is it no longer available?
1
vote
1answer
217 views

TouchXML: Problems on reading EDSP Information with Iphone

I am using TouchXML to parse incoming XML Files. Until now, everything worked fine, but with this file, I am having lots of troubles: <item> <title><![CDATA[Hotel ...
1
vote
2answers
583 views

How to get CXMLElement when using xpath

Is there a way to get a CXMLElement back when xpath querying a document? The XCMLNode item returned by the - (NSArray *)nodesForXPath:(NSString *)xpath error:(NSError **)error; doesn't contain the ...
1
vote
2answers
1k views

How to parse complex XML tree using TouchXml in iPhone

I am trying to build an app which during start-up connects to website and downloads the XML data. Though the data is large(100 KB) and i am using TouchXml for it. The xml is like this. <?xml ...
1
vote
1answer
418 views

NSXMLParser vs KissXML vs TouchXML which one is memory efficient?

I have a large XML file ( around 1mb ) . i want to ask that if i parse the XML with NSXMLParser or KissXML/TouchXML. which will take less interim memroy ?? ( the memroy took during parsing ) .
1
vote
1answer
965 views

parsing SOAP response with touchXML - a problem

i've another problem with obj-c: i'm trying to parse this XML : here's the case: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope ...
1
vote
2answers
702 views

Parsing `<media:content>` RSS feed tags using touchXML

I have the following RSS feed that I'm trying to parse using touchXML for an iphone application. <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" ...
1
vote
1answer
284 views

TouchXML parsing error

I have a xml document which has only one element in the document. This is the whole document. <?xml version="1.0" encoding="UTF-8"?> <error>key ! is invalid</error> But when i try ...
1
vote
2answers
1k views

Parsing SO RSS feed using TouchXML, no <entry> tags found

I'm trying to parse a Stack Overflow RSS feed of a specific question: http://stackoverflow.com/feeds/question/2110875 For this I'm using the TouchXML library. There seems to be a problem in the ...
1
vote
1answer
271 views

What is the Proper Escape Formatting for HTML and CSS Within an XML Document?

I have an XML data source that has HTML & CSS formatted data contained in one of the document nodes. What is the proper way to escape this data so that I can properly parse it? For clarification, ...
1
vote
1answer
1k views

Extract HTML from CDATA node in iPhone

<item> <data> <![CDATA[ <p>Test</p> <p><strong>Hi!</strong><br />Hello.</p> ]]> </data> </item> Using ...
1
vote
3answers
1k views

Where can I find documentation for TouchXML?

I would really like to see some (complete) reference documentation for all TouchXML classes, methods, etc. Where can I find it? Thanks!
0
votes
0answers
24 views

TouchXML Empty Node values

I am trying to parse some XML for an iphone app(IOS5 xcode4.2) I had given up with NSXMLParser as it was a pain to get anywhere. So I went with touchXML, I am able to pull my remote XML file from a ...
0
votes
2answers
142 views

How i post TouchXML library in iOS 5?

i want to parse some complected XML files, so i have plan to used TouchXML library (code) I used latest version of XCode iOS 5 in ARC environment. But my project already working in non-ARC ...
0
votes
1answer
52 views

Parsed TouchXML XML file crashes when reading NSString

I'm able to successfully parse the contents of a XML file using TouchXML, but when I try to read an individual NSString, from the NSMutableArray that stores the parsed content, the iPhone app crashes. ...
0
votes
1answer
72 views

Unable to parse and build nested XML elements with TouchXML

How to use TouchXML when nested elements appear inside xml? I would like need to nest image names inside NSArray for dictionary key @"images", however something is wrong with the code :(. Here's the ...
0
votes
0answers
52 views

touchXML on iphone - appstore problems?

Does anybody know whether touchXML uses private APIs - i.e. if an app using touchXML will be rejected by the appstore? I can't find anything about that on google.
0
votes
1answer
130 views

sudzC handle parameters

I m just started a new project which requires communication with a soap webservice developped by another company The functions requires some paramters ex: TPLogin parameters required: SLogin=XXX ...
0
votes
0answers
119 views

xpath xml parsing with touchxml query help

Currently I am searching for some xpath query related stuff. My xml structure is like this: <data> <someChild> <title>This is a child</title> <someBaby> ...
0
votes
1answer
290 views

iphone - How to use TouchXML to convert HTML to tidy XHTML before parsing?

There are several questions with similar titles as this one, asking about using TouchXML with HTML Tidy. But almost all of them were trying to ask how to set up Tidy. Mine is trying to ask (if you ...
0
votes
1answer
70 views

How can I recursive traverse an XML-File in Objective-C?

I got the following XML-Structure: <categories> <category> <name>Category_1</name> <ID>100</ID> <SubCategories> ...
0
votes
2answers
180 views

Message Sent to Deallocated Instance

I'm using TouchXML to parse an element in iOS. I retrieve a response from a web service using an NSInvocationOperation, then parse and display the results. Everything works fine as the background ...
0
votes
2answers
128 views

Weird crash if I try to release CXMLDocument

I am parsing some XML using TouchXML and I am getting a crash -EXC_BAD_ACCESS. What I found out through trial and error was that if I don't release my CXMLDocument (which I allocate), then everything ...
0
votes
1answer
37 views

touchXML: stringValue not saved as string?

NSLog(@"Status: %@", [[[xmlElement elementsForName:@"status"] objectAtIndex:0] stringValue]); NSString *val = [[[xmlElement elementsForName:@"status"] objectAtIndex:0] stringValue]; ...
0
votes
0answers
68 views

Strange response in stringvalue of elementsForName

My code is this CXMLDocument *document = [[[CXMLDocument alloc] initWithXMLString:responseString options:0 error:nil] autorelease]; NSArray *nodes = [document nodesForXPath:@"//data" ...
0
votes
0answers
137 views

XML Parsing with a LOOP

I am using TouchXML to parse articles with a certain Intkey, this Int is a category ID number that another feed will pass trough. A reward is offered for the (fast) solution (30$). So this is the ...
0
votes
1answer
271 views

TouchXML XPath query help

I have an xml I am using TouchXML to parse it. Basically, a Lookup looks like this: <Lookup> <LookupID>201150103538705</LookupID> ...

1 2