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.

Share Improve this question edited Mar 26, 2011 at 13:25 tsds asked Mar 26, 2011 at 9:39 tsdstsds 9,04914 gold badges65 silver badges85 bronze badges 5
  • 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
Add a ment  | 

2 Answers 2

Reset to default 6

Many 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