Parsing XML from an HTTPS URL using NSXMLParser? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:44:26Zhttp://stackoverflow.com/feeds/question/419963http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/419963/parsing-xml-from-an-https-url-using-nsxmlparser2Parsing XML from an HTTPS URL using NSXMLParser?Nocturne2009-01-07T11:29:04Z2009-04-04T01:45:32Z
<p>I'm trying to parse XML directly from an HTTPS URL, as follows:</p>
<pre><code>NSString *const URL = @"https://some/HTTPS/url";
NSURL* url = [NSURL URLWithString:URL];
NSXMLParser* parser = [[NSXMLParser alloc] initWithContentsOfURL:url];
[parser setDelegate:self];
[parser parse];
</code></pre>
<p>I have the following delegate method for the parser:</p>
<pre><code>- (void) parser:(NSXMLParser *)parser
didStartElement:(NSString *)elementName
namespaceURI:(NSString *)namespaceURI
qualifiedName:(NSString *)qualifiedName
attributes:(NSDictionary *)attributeDict
{
NSLog(@"Started parsing %@", elementName);
}
</code></pre>
<p>This seems to work fine for HTTP URL's, but shows no result for an HTTPS URL. </p>
<p>How could I fix this?</p>
http://stackoverflow.com/questions/419963/parsing-xml-from-an-https-url-using-nsxmlparser/422592#4225922Answer by irsk for Parsing XML from an HTTPS URL using NSXMLParser?irsk2009-01-07T23:18:17Z2009-01-07T23:18:17Z<p>You should use NSURLConnection to download the XML data and then parse the output rather than using -initWithContentsOfURL:.</p>
<p>NSURLConnection is more robust and also allows you to do asynchronous fetching which you should definitely be doing, -initWithContentsOfURL: will block the main thread.</p>
http://stackoverflow.com/questions/419963/parsing-xml-from-an-https-url-using-nsxmlparser/422704#4227045Answer by Nathan Kinsinger for Parsing XML from an HTTPS URL using NSXMLParser?Nathan Kinsinger2009-01-08T00:01:19Z2009-04-04T01:45:32Z<ol>
<li><p>None of the initWithContentsOfURL:... methods will allow you to answer the authentication message from the https server. So look at <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSURLConnection%5FClass/Reference/Reference.html" rel="nofollow">NSURLConnection</a> and <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSURLDownload%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20001832" rel="nofollow">NSURLDownload</a> which have delegate messages that help you handle authentication.</p></li>
<li><p>To learn more about using URL's for communicating with servers read <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html" rel="nofollow">Introduction to the URL Loading System</a>.</p></li>
<li><p>As far as parsing HTML with an XML parser, it will only reliably work with XHTML. So if you are creating and parsing your own XHTML files that should work in most cases. But if you are loading any HTML file from the internet then the XML parser will often not be able to parse the file. You may want to look at <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DisplayWebContent/DisplayWebContent.html" rel="nofollow">WebKit</a> for that.</p></li>
</ol>
http://stackoverflow.com/questions/419963/parsing-xml-from-an-https-url-using-nsxmlparser/423941#4239411Answer by Nocturne for Parsing XML from an HTTPS URL using NSXMLParser?Nocturne2009-01-08T11:21:29Z2009-01-08T11:21:29Z<p>Also, most HTTPS servers check the User-Agent string and do not play well when no such header value is specified. It definitely helps to have some (valid) User-Agent string in the url request. </p>
http://stackoverflow.com/questions/419963/parsing-xml-from-an-https-url-using-nsxmlparser/711044#7110440Answer by sandover for Parsing XML from an HTTPS URL using NSXMLParser?sandover2009-04-02T18:36:52Z2009-04-02T18:36:52Z<p>I'm not sure if you're doing iPhone programming or not, but for the record, in the NSXMLParser Class Reference (in the iPhone 3.0 beta 2 SDK), initWithContentsOfURL:(NSURL *)url does <strong>NOT</strong> appear to be deprecated. </p>