While i am opening this link .It’s giving me an below error.I did parsing and able to get all things.But client want to open in browser like webpage.Please tell me what should i do?
Error loading: http://www.chicagowolves.com/news?format=feed&type=rss,
Error: Error Domain=WebKitErrorDomain Code=102 “Frame load
interrupted” UserInfo=0x9946670
{NSErrorFailingURLKey=http://www.chicagowolves.com/news?format=feed&type=rss,
NSErrorFailingURLStringKey=http://www.chicagowolves.com/news?format=feed&type=rss,
NSLocalizedDescription=Frame load interrupted}
This is not a web page, it is RSS, therefore you can not load it as a web page, as your client wants.
This is an RSS feed which is an XML based format, and therefore needs to be parsed, read and displayed by an RSS reader (or something of that nature) the web view is not the way to do this, no matter what your client thinks.
Here is a open source RSS reader sample application on GitHub for Titanium. If your client truly wants to see the raw rss, then you should download the file using the an HTTPClient (heres the doc) and display it as text in a TextField.