tags:

views:

146

answers:

3

I was doing AJAX implementation and would like to use Websocket when the client web browser supports it. Is there any frameworks that supports Websocket but falls-back to other methods when it detects the client side doesn't support Websocket.

+2  A: 

Yes sort of see www.kaazing.org

Kaazing Gateway supports all major browsers (Firefox version 1.5 and higher, Internet Explorer version 5.5 and higher, Safari version 3.0 and higher, Opera version 9.5 and higher, and Google Chrome version 0.2 and higher).

oluies
A: 

You could also use Nirvana from www.my-channels.com.

When WebSocket is not supported it will fall back to a Comet based approach transparently.

eddie mcdaid
+2  A: 

There is also Atmosphere

http://atmosphere.dev.java.net

which support both client and server.

jfarcand