admin管理员组文章数量:1344238
How can I make my javascript client application receive socket requests?
I mean not response on request, but request itself.
Javascript is running in browser without HTML5.
The thing is that I want my web page to reload changed content but without the need of making request to the server each several minutes.
I hope that a server can make some request to javascript on the page, making it refresh the page. If not what could you suggest instead javascript in this scope.
How can I make my javascript client application receive socket requests?
I mean not response on request, but request itself.
Javascript is running in browser without HTML5.
The thing is that I want my web page to reload changed content but without the need of making request to the server each several minutes.
I hope that a server can make some request to javascript on the page, making it refresh the page. If not what could you suggest instead javascript in this scope.
- Javascript running where, in a browser? – Pekka Commented Mar 26, 2011 at 9:41
- 1 Yes and no. No in a browser. Yes in another environment : nodejs – JohnP Commented Mar 26, 2011 at 9:48
- @JohnP: since this is a valid answer, why don't you post it as such ??? – Adrien Plisson Commented Mar 26, 2011 at 9:52
- 1 @Adrien I was watching the worldcup so posted a quick snippet! Posted as an answer now :) – JohnP Commented Mar 26, 2011 at 10:01
- @JohnP: haaa, this is a nice answer. – Adrien Plisson Commented Mar 26, 2011 at 10:02
2 Answers
Reset to default 6Many browsers that support HTML5 implement WebSocket interface. WebSocket allows two way munication, so browser and server can send requests. Check this post for more info What browsers support HTML5 WebSocket API?
If your browser doesn't support WebSockets you could try WebSocket emulation written in Flash/JS from this site https://github./gimite/web-socket-js
If this is also not suitable for you then the last option is "long polling". In this case browser ask server for some data and if server does not have any information available for the browser it doesn't send empty response. It holds the request and waits for new data to be available. Browser after receiving new data immediately ask server once again. Check these links for more information: http://en.wikipedia/wiki/Push_technology http://en.wikipedia/wiki/Comet_(programming)
Yes and No.
No
Javascript running in a browser environment can't listen to sockets since it's running in a sandbox with limited capabilities.
Yes
However, JS is a full fledged programming language, so if you have it running in an environment where it is not crippled yes, it can do that and more.
A nice example is node.js - http://nodejs/
Wiki page - http://en.wikipedia/wiki/JavaScript#Uses_outside_web_pages
本文标签: can javascript receive socket requestStack Overflow
版权声明:本文标题:can javascript receive socket request? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736725a2530146.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论