Questions tagged [touchxml]

TouchXML is a lightweight replacement for Cocoa's NSXML* cluster of classes. It is based on the commonly available open source libxml2 library.

TouchXML is a lightweight replacement for Cocoa's NSXML* cluster of classes. It is based on the commonly available open source libxml2 library.

References:

110 questions
1
vote
1 answer

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 is my code: NSData *XMLData = [NSData…
James Skidmore
  • 44,302
  • 30
  • 104
  • 135
1
vote
2 answers

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?
user7865437
  • 804
  • 14
  • 28
1
vote
2 answers

Parsing SOAP result using TouchXML in iOS SDK (iPad)

I'm working on an iPad project that is using functions in a WebService. Handling webservice connection, data etc works find. But i'm not able to parse the result SOAP using TouchXML. Getting the nodes out of the xml always returns 0 length. The…
Inoel
  • 51
  • 4
  • 11
1
vote
1 answer

where is there any decent TouchXML examples / tutorials

I'm trying to see how this works but as yet all I seem to find is dead links, fragmented comments or nothing of any worth to introduce a beginner to this? Any pointers welcome, thanks
user7865437
  • 804
  • 14
  • 28
1
vote
1 answer

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: <![CDATA[Hotel Katschberghof]]> 92090
Bosstone
  • 189
  • 1
  • 12
1
vote
2 answers

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 attributes functions. Is there a way to either…
sharvey
  • 6,076
  • 7
  • 44
  • 66
1
vote
2 answers

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.
user302326
1
vote
1 answer

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 ) .
g.revolution
  • 10,884
  • 19
  • 74
  • 102
1
vote
1 answer

Can't get XML element with colon in the name using TouchXML

I have the following code: NSString *subtitle = [[[node elementsForName:@"subtitle"] objectAtIndex:0] stringValue]; NSString *duration = [[[node elementsForName:@"itunes:duration"] objectAtIndex:0] stringValue]; The first line works perfectly. The…
James Skidmore
  • 44,302
  • 30
  • 104
  • 135
1
vote
2 answers

Parsing `` RSS feed tags using touchXML

I have the following RSS feed that I'm trying to parse using touchXML for an iphone application.
ametade
  • 91
  • 1
  • 6
1
vote
1 answer

TouchXML parsing error

I have a xml document which has only one element in the document. This is the whole document. key ! is invalid But when i try to parse it, it says this document has no element at all. In other…
itsaboutcode
  • 21,936
  • 42
  • 103
  • 153
1
vote
0 answers

TouchXml installation on xcode 6.1

I try to get TouchXml to work on Xcode 6.1 . I have problem with the libxml2.dylib configuration, i get "libxml/tree.h file not found". how can i solve this problem?
liron
  • 55
  • 5
1
vote
2 answers

TouchXML, get text value of node objective-c

I've looked all over the web but just can't figure out how to get the text from a node in Objective-C. I'm using TouchXML and I am getting my node list. I want the title text from a node, but instead I get a node object. My code is: resultNodes =…
Adam Seabridge
  • 1,711
  • 17
  • 24
1
vote
1 answer

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, I am using TouchXML in Objective-C to parse the data.…
Leachy Peachy
  • 1,092
  • 2
  • 16
  • 29
1
vote
1 answer

Extract HTML from CDATA node in iPhone

Test

Hi!
Hello.

]]>
Using TouchXML/NSXMLParser How can i extract only the HTML part into a string/appropriate data format so that I can display it in a…
Dot
  • 429
  • 5
  • 17