I am using NSXMLParser to parse my data obatained from my webservice. But when I get the data from the server.
It gives me Error Code 5.
I am not able to see the response that comes from the webservice.
I use
NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:theURL];
But I cannot see the response in console when I write NSLog(@"%@",parser);
How can I display the response obtained from my webservice?