How can I have multiple instances of webkit without sharing cookies? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:44:33Z http://stackoverflow.com/feeds/question/364219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies 2 How can I have multiple instances of webkit without sharing cookies? Dustin 2008-12-12T21:34:29Z 2008-12-22T16:48:28Z <p>I have an app that creates a couple of WebView instances and I'd like to have them operate as independently as possible.</p> <p>At the very least, I don't want them sharing cookies. A quick google search gave me results liking "you can't." I'm hoping someone has a better answer.</p> http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/364304#364304 0 Answer by Will Bickford for How can I have multiple instances of webkit without sharing cookies? Will Bickford 2008-12-12T22:02:19Z 2008-12-12T22:02:19Z <p>I would assume that cookies would be configured on a service / application level and not for particular instances or processes. Perhaps you could revise your question to find a way to resolve the problem you are having which requires that the instances do not share cookies.</p> <p>What is the motivation for not sharing cookies between the instances?</p> <p>If you just need 3 views into the same web resource you could setup some virtual hosts that point to the same data source.</p> http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/365080#365080 3 Answer by Kevin Ballard for How can I have multiple instances of webkit without sharing cookies? Kevin Ballard 2008-12-13T10:26:26Z 2008-12-13T11:23:48Z <p>The basic answer is "you can't".</p> <p>After looking at this for a bit, I think it's possible, but extremely complicated. It would involve implementing a resourceLoadDelegate on your WebView that implements <code>-webView:resource:willSendRequest:redirectResponse:fromDataSource:</code> and modifies the request to turn off <code>HTTPShouldHandleCookies</code> and adds any relevant cookies to the request manually. It also has to implement <code>-webView:resource:didReceiveResponse:fromDataSource:</code> to find out about any cookies returned from the server. You can alloc/init your own copy of <code>NSHTTPCookieStorage</code> per-webview and use that to store/retrieve the cookies.</p> http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/365135#365135 2 Answer by Kristof for How can I have multiple instances of webkit without sharing cookies? Kristof 2008-12-13T11:49:56Z 2008-12-13T11:49:56Z <p><a href="http://lists.apple.com/archives/Webkitsdk-dev/2008/Jan/msg00018.html" rel="nofollow">This post</a> sums up what you could do. I'm not sure if it is feasible for you and I feel it wouldn't be a straightforward task, maybe even risky, but it seems to be <em>possible</em>: the author claims iCab does it this way.</p> <p>I was hoping for a simpler solution too, really. Of course, since Webkit is open source you could just roll out your own version of the framework with changed behavior I guess?</p> http://stackoverflow.com/questions/364219/how-can-i-have-multiple-instances-of-webkit-without-sharing-cookies/386719#386719 0 Answer by Kristof for How can I have multiple instances of webkit without sharing cookies? Kristof 2008-12-22T16:48:28Z 2008-12-22T16:48:28Z <p>What you can do is take a look at <a href="http://developer.apple.com/documentation/Darwin/Reference/Manpages/man3/libcurl-tutorial.3.html" rel="nofollow">libcurl</a> which can handle cookie stores that don't mix with the URL Loading system wide cookie storage for those requests you want to separate. For me that seems to be a valid and simple solution. If you really need to depend on webview/webkit it might not be.</p>