开发者

Map Custom URL protocol to HTTP (using NSURLProtocol?)

I hav开发者_JAVA百科e an application using a WebKit WebView and I'd like to map URL's that are loaded in this WebView with a custom URL protocol to a different HTTP URL. For example, say I am loading:

custom://path/to/resource

I would like to internally actually load:

http://something-else.com/path/to/resource

In other words, the custom protocol serves almost as a shorthand. I can't however use -webView:resource:willSendRequest:redirectResponse:fromDataSource:, because I want WebKit to actually believe this is the URL in question, not to simply redirect from one to the other.

So far I've been attempting to use a custom NSURLProtocol subclass. However, this is proving trickier than I first thought because, at least to my understanding, I will have to do the actual loading myself in the NSURLProtocol subclass' startLoading method. I'd like a way to just hand off the work to the existing HTTP protocol loader, but I can't find an easy way to do this.

Does anyone have a recommendation for this, or perhaps an alternative way to solve this issue?

Thanks!


I use the policy delegate. It has some disadvantages, but it's simple and sufficient for my needs. I do something like this:

 - (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id < WebPolicyDecisionListener >)listener;

{
    if ([request.URL.scheme isEqualToString:@"custom"]) {

        // do something interesting
        // like force the webview to load another URL

        [listener ignore];
        return;
    }

    [listener use];
}

For my use, I also need to stop the propagation of the JS events. So I usually place the URL in an onclick event handler that calls window.event.stopPropagation(); after setting the location.href.

It's not very fancy, but it's a very flexible and very simple way to communication a JS event to cocoa.


You can implement the WebResourceLoadDelegate method:

- (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource

This should allow you to change the request for one with the HTTP URL.

Alternatively, implementing an NSURLProtocol subclass isn't very hard for this because your protocol can internally fire up another NSURLConnection using the correct HTTP URL and map its delegate methods to the protocol client's.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜