views:

335

answers:

2

Hi All,

I am getting this error in webview while loading this url : http://www.thumbzine.com/rssfeed.php?vol=104

"Error Domain=WebKitErrorDomain Code=102 UserInfo=0xde6ce0 "Frame load interrupted""

[webView loadRequest:[NSURLRequest requestWithURL:
             [NSURL URLWithString:@"thumbzine.com/rssfeed.php?vol=104"]]];

What is this error due to ?

Thanks

A: 

What do you mean 'loading this URL', is this a dev question or you're just trying to load this within Safari?

I'm guessing it's a dev question so are you getting this error within the simulator or on your dev device?

zinc
i am using this webview method. [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.thumbzine.com/rssfeed.php?vol=104"]]]; Neither its loading in Simulator, nor in the device. But i can see the contents if i open in safari browser
Biranchi
A: 

Try this

NSString *urlText = [NSString stringWithString:@"http://www.thumbzine.com/rssfeed.php?vol=104"]; 
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlText]]];
zinc
I used the above code but still no success. I implemented the didFailLoadWithError delegate mehod , its giving "Error Domain=WebKitErrorDomain Code=102 UserInfo=0xd6eaf0 "Frame load interrupted" as error.
Biranchi