admin管理员组文章数量:1345884
I would like to know how Gmail (or anyone else) does et on Opera.
Here is what I know so far from my experiments.
- It doesn't use the event-source tag which is broken in Opera 10.51.
- It doesn't use iframe which displays a spinning throbber and a busy mouse cursor.
- It doesn't use responseText on xmlhttprequest when readyState = 3 which is known to be broken on Opera.
I tried seeing how it was done in mibbit and etherpad, and I found that they both use long-polling.
Bounty
The bounty goes to whoever can tell me a method better than "event-source" for Opera et streaming, or how gmail does streaming (or long-polling if it does that).
I would like to know how Gmail (or anyone else) does et on Opera.
Here is what I know so far from my experiments.
- It doesn't use the event-source tag which is broken in Opera 10.51.
- It doesn't use iframe which displays a spinning throbber and a busy mouse cursor.
- It doesn't use responseText on xmlhttprequest when readyState = 3 which is known to be broken on Opera.
I tried seeing how it was done in mibbit and etherpad, and I found that they both use long-polling.
Bounty
The bounty goes to whoever can tell me a method better than "event-source" for Opera et streaming, or how gmail does streaming (or long-polling if it does that).
Share Improve this question edited Apr 19, 2010 at 6:31 Unknown asked Apr 17, 2010 at 6:04 UnknownUnknown 46.9k29 gold badges142 silver badges183 bronze badges4 Answers
Reset to default 9 +350GMail uses BrowserChannel (Docs | Source), which is included in Google's Closure Library.
- @fileoverview Definition of the BrowserChannel class. A BrowserChannel
- simulates a bidirectional socket over HTTP. It is the basis of the
- Gmail Chat IM connections to the server.
I really don't have any idea on what the answer is. But I know Opera supports server-events : http://my.opera./WebApplications/blog/show.dml/438711 . Maybe it's a step towards the anwser? I'm not really sure either, but I think they use it within Opera Unite.
I think that rather cross-browser (including Opera) approach might be to stream data through an Adobe Flash application. Though it would introduce dependence on the Flash plugin and is not very popular because of that.
I am the author of an in progess C++ HTTP server that is patible with googBrowserChannel. You can find the docs I've written while studying the protocol here:
http://code.google./p/libevent-browserchannel-server/wiki/BrowserChannelProtocol
Long story short, BrowserChannel uses forever frames on IE and XHR streaming on all other browsers. The protocol is divided into several phases, the first of which is network testing:
1) test the network to ensure response "streaming" is supported (in other words no buffering proxy exists)
2) check access to a variety of network prefixes (to make sure the network admin has not blocked access to chat)
Then the actual data transmission can start. Data is divided into two channels (forward and back). The back channel is a series of long lived (about 4 mins each) requests used for the server to "stream" content to the client. To do so HTTP chunked encoding is used. The client does it's best to make sure that one backchannel is always open. The server will close it about every 4 mins after which the client will open a new backchannel. The forward channel is used to send data from the client to the server. This pushing of data is done as necessary.
本文标签: javascriptHow does Gmail do comet on OperaStack Overflow
版权声明:本文标题:javascript - How does Gmail do comet on Opera? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743797728a2540739.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论