Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
5k views

NSXMLParser Leaking

I have the following code that leaks. Instruments says that it is the rssParser object that is leaking. I "refresh" the XML feed and it runs the block and it leaks.... file.h @interface ...
3
votes
1answer
268 views

how to fetch contact list from gmail using xmpp framework

i am trying to make a chat application. i am using XMPP framework to fetch the contact list from gmail account. i am able to receive chat buddies, but i want all the contacts from my gmail account. I ...
2
votes
2answers
115 views

Problem parsing response containing characters like '\u00'

I am using NSXML Parser to do parsing in my iphone app. Now everything works fine except when data comes in french language. For example, data from server comes as Ch\u00e9rie FM. Now under the ...
2
votes
1answer
50 views

iphone - skip a section of data when downloading?

I am currently using NSURLConnection to download some date from a database through a php script on a server. The connection works fine and data is received correctly. However I have a problem when I ...
2
votes
2answers
347 views

Subtracting duration from dateTime in Cocoa's NSXML XQuery

I have the following XQuery code, which from my reading of the O'Reilly XQuery book seems like it should work: let $now := current-dateTime() let $month := xs:dayTimeDuration("P30D") let $month_ago ...
2
votes
4answers
450 views

Using NSXMLElement to add a tag in the middle of a block of text

I need to create an XML document with the following type of format. <Para> This is some text about <someMethod> that you need to know about. </Para> I'm having no issues with ...
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
180 views

NSXML Parsing - Distinguishing Nodes

I am trying to extract the doc-num from the following xml using NSXML. At this point I am able to iterate through all the nodes using the NSXML parser event, but I am trying to distinguish between ...
1
vote
2answers
529 views

UITable view,loading images from rss feed

I m reading the xml images from rss feed and parsing it in UITable view. Everything works fine, but it takes time to load the image content in the table view. The screen remains frozen. I'm using ...
1
vote
1answer
373 views

How to get attributes from an element in XML

I have constructed an XML tree structure of an XML file. I am able to trace the entire tree. When i want to retrieve the attributes of an element, it is returning as NSXMlNode of kind ...
1
vote
1answer
314 views

writing CDATA block to NSXMLDocument file

How can one write CDATA block in XML file and save it to a file in cocoa.
1
vote
1answer
337 views

NSXML replacing “<” with “%lt;”

I see there are other questions related to this, but none using NSXML. So, I'm constructing an XML document from scratch using NSXML and when I create a NSXMLNode with a string value, all the "<" ...
0
votes
1answer
55 views

NSXMLParserDelegate Methods Not Being Called

I've done an NSXML Parser before, but for some reason this time my NSXMLParserDelegate methods aren't being called when I call parse. Here's where I call parse: - (void)parseXMLFile:(NSString ...
0
votes
1answer
40 views

Quotations marks lost when saving xml with GDataXml

I have a xml file like this: <Patients> <patient name="someName" lastName="someLastName"> <aProperty>anIntegerValue</aProperty> </patient> </Patients> So I parse ...
0
votes
1answer
34 views

nsxml works but not with my service

hi iam writing a client server iphone application and i use nsxml to read xml feed from a website ..and before i wrote the php service i tried it with a rss from another site...and it worked fine. ...
0
votes
1answer
80 views

NSXMLElement, without an NSXMLDocument

I have an NSXMLElement that is a copy from somewhere else in my code. After it's been used, it no longer is connected to an NSXMLDocument. It's (what I believe to be) not linked to anything. If I ...
0
votes
1answer
167 views

NSXMLParser problem with “&”(Ampersand) character

My NSXMLParsing is not working because of "&" character.. my code s below .any help please ? NSString *myRequestString = [NSString ...
0
votes
0answers
36 views

iPhone XML parsing

I am working on an app which requires Twitter feeds. I am using the following URL to get the feeds and I want to get value of title and upbdate tag. The problem is I am always getting the value of ...
0
votes
0answers
44 views

loading tableview after parserDidEndDocument called , both are in deferent classes

i have a tabBar app with 3 tab , every tab have it's controller .h , .m & .xib so i have 9 files for the tabs and also 2 files for AppDelegate .h & .m tab 1: just view with button tab 2: ...
0
votes
0answers
192 views

NSXML add namespace to make XPath-queries work

I've got an issue where my XPath queries does not work if an XMLNS attribute is defined in the document. I've figured out that this is probably because all elements is using the default XMLNS, while ...
0
votes
1answer
63 views

Get the right node from duplicates xml with NSXML

I'm trying to us NSXML to parse a user's channel from youtube. Parsing works ok, but I can't seem to figure out how to get the link from any specific movie as their are 5 exact the same nodes as ...
0
votes
0answers
41 views

nsxmlparser parsing problem

I am using the following code when i compile it 1st nslog"End parsing!" is showing in the console and i am getting didstartelement's nslog means"NSLog(@"Did start element"); plz help me - ...
0
votes
0answers
196 views

Validating a Cocoa NSXMLDocument with xml:space attributes

I have the following document: <root xmlns="http://example.com/root" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://example.com/root root.xsd"> <foo ...
0
votes
1answer
236 views

NSXMLDocument validateAndReturnError requires network connection?

I am trying to validate an XML Schema document against the schema for schemas (http://www.w3.org/2001/XMLSchema) using NSXMLDocument. I've gotten it to work correctly, and assumed that I was ...
0
votes
2answers
122 views

different response is coming from .net web server using NSUrlrequest

i am getting the data from .net web server like this. <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
0answers
166 views

XML with namespace. Issue with Internet Explorer

I am having an issue rendering data from XML with namespacing in Internet Explorer 6, 7 and 8(haven't checked 9). It works in Chrome though. The XML is formatted like this, <?xml version="1.0" ...
0
votes
2answers
127 views

NSXML Not parsing values for entries

I have an iPhone app that I'm building which goes out and gets a xml file and then parses data from it to create objects. For some odd reason though the text I try to parse out always has a value of ...
0
votes
1answer
373 views

NSXML Parsing through objective C

I am working on xml parsing through Objective C. I am getting trouble into following part. Please help me out. I am using NSXMLParser class and its delegates. How to trace out "url", "type", "height" ...
0
votes
1answer
668 views

libxml2 example (with wrapper)

I am using the XML parser libxml2 with wrapper as given on the page http://cocoawithlove.com/2008/10/using-libxml2-for-parsing-and-xpath.html But i am not sure if I am using correctly and am getting ...
0
votes
0answers
109 views

i had a typical problem after parsing xml

I have two tab bars, First tab bar do has tableview with four contents DJ, Event, Clubs, Genre. Second tab-bar has cities. I have parsed the data for DJ, Event, Clubs, Genre and displayed the ...
0
votes
2answers
307 views

UITableView show only first row

My app has 3 tabs (Kids, Points and Requests) with same result list. I'm using a custom cell to show kids information with same data in 3 tabs. For example: Kids Tab: Kid name 1 Kid name 2 Kid ...
0
votes
1answer
182 views

using Gdata and Xmpp protocol both in one application

I am integrating two apps into one. the first app is a chat app. We have used xmpp framework for retrieving gmail chat buddies form gmail account. In the other app we have used Google Data Protocol ...
0
votes
2answers
417 views

XML parsing problem - iPhone

Hello I am new to iPhone development. I have created one application that consume data from web service. And it works fine but I have a problem with parsing. The xml data that I get from the web ...
0
votes
1answer
122 views

Extracting info. from XML into Cocoa

I am trying to parse an XML to extract values of certain variables. Here's an example: <?xml version='1.0'?> <Main xmlns='http://www.abc.uk' version='1.0' name='full'> <child1 ...
0
votes
0answers
369 views

Have NSXMLParser parse the contents of multiple URLs at once

I've been using NSXMLParser on the iPhone to parse out XML files from the web without any problems. I'm now in a situation though where I want to get the contents of three different URLs and then ...
0
votes
2answers
125 views

problem while xmlParsing

I am calling a webservice which returns xml data. Now when i receive the xml data, it is all distorted. all the escape characters like "<", ">" and " ' " are converted to html format ie ≶ &tg; ...
0
votes
1answer
554 views

Text encoding problem between NSImage, NSData, and NSXMLDocument

I'm attempting to take an NSImage and convert it to a string which I can write in an XML document. My current attempt looks something like this: [xmlDocument setCharacterEncoding: @"US-ASCII"]; ...
0
votes
2answers
2k views

How to Parse through nsXml Parser

i am very new to iphone Development and i am asked to use nsxml parser to parse xml from a google api. i have parsed another url which has xml but i am not able to parse google's because it is using ...
0
votes
2answers
1k views

which is faster ? NSXMLParser or KissXML

HI, i need a XML parser. i want to know that which one is faster? NSXMLParser or KissXML ? looking forward for replies...
0
votes
2answers
177 views

Check the Node kind in an XML Tree

I have constructed an XML tree from an XML file. While constructing I do initWithKnd: or initWithKind: options: method. How can I check if a node is of Element or CDATA or ay other kind while ...
0
votes
0answers
322 views

modifying string content of XML file in CDATA block

How can i modifying the string content in CDATA block of an XML file, such as For reference[(text)] please look below syntax, <![CDATA[<FlowDocument FontFamily="Helvetica" ...
0
votes
1answer
241 views

Maximum length of [NSXMLNode stringValue]

I have an XML document which contains an element that is over 90,000 characters in length*. NSXMLNode* node = ...; NSString* val = [node stringValue]; // this is not the full contents of the node! ...