Can someone give insight on this error?
Hey, Lurked for some time now, though still not sure if this is the correct mailing list to ask on, so feel free to shout and scream at me if I'm wrong. ;) I was doing some work on making various templates compatible with Webkit's engine, and I've run into this error (intermittently, a refresh will sometimes fix it) on most versions of Webkit. /Operation could not be completed. (kCFErrorDomainCFNetwork error 302.)” (kCFErrorDomainCFNetwork:302) /I've noticed that the exact same symptoms occur in Chrome (I know it's Webkit, though I'm not sure to what extent the codebases are the same - shouldn't be too different I assume) under the following bug: /Error 2 (net::ERR_FAILED): Unknown error. /Google returned various results, nothing really solid in terms of what the issue is or whether there's a fix - anybody got an idea? Are the two errors just completely different, and Chrome's the problem (and I should take it over to their bug tracker)? Thanks again, - Ryan McGrath
On Sep 10, 2008, at 12:32 PM, Ryan McGrath wrote:
I was doing some work on making various templates compatible with Webkit's engine, and I've run into this error (intermittently, a refresh will sometimes fix it) on most versions of Webkit.
/Operation could not be completed. (kCFErrorDomainCFNetwork error 302.)” (kCFErrorDomainCFNetwork:302)
Error 302 in kCFErrorDomainCFNetwork maps to kCFErrorHTTPConnectionLost, which indicates that "The connection to the server was dropped. This usually indicates a highly overloaded server".
/I've noticed that the exact same symptoms occur in Chrome (I know it's Webkit, though I'm not sure to what extent the codebases are the same - shouldn't be too different I assume) under the following bug:
/Error 2 (net::ERR_FAILED): Unknown error.
The underlying HTTP stack in Chrome is completely different than what is used in Safari's WebKit. Safari's WebKit makes use of CFNetwork, but I'm not sure what exactly Chrome uses. If you have reproducible instances of this problem you should file bug reports against CFNetwork (<http://bugreport.apple.com/>) and Chrome (<http://code.google.com/p/chromium/issues/entry
) so that they can be investigated by the respective teams. Given that two different HTTP stacks are running into a similar issue it is quite possible that the problem is in fact a server-side issue where the server is prematurely dropping the connection.
- Mark
For what it's worth, this is a known issue with CFNetwork, essentially a status code translation changed unexpectedly. No need to file another bug on the 302 errors :) On Sep 10, 2008, at 12:43 PM, Mark Rowe wrote:
On Sep 10, 2008, at 12:32 PM, Ryan McGrath wrote:
I was doing some work on making various templates compatible with Webkit's engine, and I've run into this error (intermittently, a refresh will sometimes fix it) on most versions of Webkit.
/Operation could not be completed. (kCFErrorDomainCFNetwork error 302.)” (kCFErrorDomainCFNetwork:302)
Error 302 in kCFErrorDomainCFNetwork maps to kCFErrorHTTPConnectionLost, which indicates that "The connection to the server was dropped. This usually indicates a highly overloaded server".
/I've noticed that the exact same symptoms occur in Chrome (I know it's Webkit, though I'm not sure to what extent the codebases are the same - shouldn't be too different I assume) under the following bug:
/Error 2 (net::ERR_FAILED): Unknown error.
The underlying HTTP stack in Chrome is completely different than what is used in Safari's WebKit. Safari's WebKit makes use of CFNetwork, but I'm not sure what exactly Chrome uses. If you have reproducible instances of this problem you should file bug reports against CFNetwork (<http://bugreport.apple.com/>) and Chrome (<http://code.google.com/p/chromium/issues/entry
) so that they can be investigated by the respective teams. Given that two different HTTP stacks are running into a similar issue it is quite possible that the problem is in fact a server-side issue where the server is prematurely dropping the connection.
- Mark
_______________________________________________ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
_Mark mpauley@apple.com
participants (3)
-
Mark Pauley
-
Mark Rowe
-
Ryan McGrath