-
-
Notifications
You must be signed in to change notification settings - Fork 751
Supported WebServers and Browsers
elakito edited this page May 9, 2016
·
24 revisions
##Supported Servers
The following table describes what Atmosphere supports. Currently Atmosphere can emulate Comet when native Comet support is not available (Websocket emulation is not yet supported).
- NC: Native Comet (The WebServer has API for Comet)
- NWS: Native WebSockets (The WebServer has API for WebSocket)
- W: WebSockets
- LP: Long-Polling
- HS: Http Streaming
- J: JSONP
- SSE: Server-Sent Events
Server | Version | NC | NWS | W | LP | HS | J | SSE |
Netty | 3.3.x | X | X | X | X | X | X | X |
Jetty | 5.x | X | X | X | X | |||
Jetty | 6.x | X | X | X | X | X | ||
Jetty | 7.x | X | X | X | X | X | X | X |
Jetty | 8.x | X | X | X | X | X | X | X |
Jetty | 9.x | X | X | X | X | X | X | X |
GlassFish | 2.x | X | X | X | X | X | ||
GlassFish | 3.x to 3.1.1 | X | X | X | X | X | ||
GlassFish | 3.1.2 | X | X | X | X | X | X | X |
GlassFish | 4.x | X | X | X | X | X | X | X |
Tomcat | 5.x | X | X | X | X | |||
Tomcat | 6.x | X | X | X | X | X | ||
Tomcat | 7.0.26 and lower | X | X | X | X | X | ||
Tomcat | 7.0.27 and up | X | X | X | X | X | X | X |
Tomcat | 8.x to 8.4 | X | X | X | X | X | X | X |
Tomcat | 8.5 and up | X | X | X | X | X | X | |
JBoss | 5.x | X | X | X | X | |||
JBoss | 6.x | X | X | X | X | X | ||
JBoss | 7.x | X | X | X | X | X | ||
JBoss | 7.2+ | X | X | X | X | X | X | |
JBoss EAP | 6.2+ | X | X | X | X | X | X | |
Wildfly | 8.x | X | X | X | X | X | X | |
WebLogic | 10.x | X | X | X | X | X | ||
WebLogic | 11.x and Up | X | X | X | X | X | ||
WebLogic | 12.x | X | X | X | X | X | X | |
Resin | 2.x | X | X | X | X | |||
Resin | 3.x | X | X | X | X | |||
WebSphere | 7.x | X | X | X | X | |||
WebSphere | 8.x | X | X | X | X | X |
The current list of Browsers have been tested with Atmosphere using the atmosphere.js Javascript library and the transport they supports.
Browser | Version | WebSockets | Long-Polling | Http Streaming | JSONP | Server-Sent Events |
Firefox | 3.x to 8.x | X | X | X | ||
Firefox | 9.x and higher | X | X | X | X | X |
Chrome | 12.x and lower | X | X | X | X | |
Chrome | 13.x and higher | X | X | X | X | X |
Internet Explorer | 6x to 9.x | X | X | X | ||
Internet Explorer | 10.x and higher | X | X | X | X | |
Opera | 10.x and lower | X | X | X | ||
Opera | 11.x and higher | X | X | X | X | |
Safari | 4.x | X | X | X | X | |
Safari | 5.x and higher/td> | X | X | X | X | X |
Android | 2.x and up | X | X | X | ||
Safari (iOS) | 1.x to 4.x | X | X | X | ||
Safari (iOS) | 5.x and higher | X | X | X | X |
- Understanding Atmosphere
- Understanding @ManagedService
- Using javax.inject.Inject and javax.inject.PostConstruct annotation
- Understanding Atmosphere's Annotation
- Understanding AtmosphereResource
- Understanding AtmosphereHandler
- Understanding WebSocketHandler
- Understanding Broadcaster
- Understanding BroadcasterCache
- Understanding Meteor
- Understanding BroadcastFilter
- Understanding Atmosphere's Events Listeners
- Understanding AtmosphereInterceptor
- Configuring Atmosphere for Performance
- Understanding JavaScript functions
- Understanding AtmosphereResourceSession
- Improving Performance by using the PoolableBroadcasterFactory
- Using Atmosphere Jersey API
- Using Meteor API
- Using AtmosphereHandler API
- Using Socket.IO
- Using GWT
- Writing HTML5 Server-Sent Events
- Using STOMP protocol
- Streaming WebSocket messages
- Configuring Atmosphere's Classes Creation and Injection
- Using AtmosphereInterceptor to customize Atmosphere Framework
- Writing WebSocket sub protocol
- Configuring Atmosphere for the Cloud
- Injecting Atmosphere's Components in Jersey
- Sharing connection between Browser's windows and tabs
- Understanding AtmosphereResourceSession
- Manage installed services
- Server Side: javadoc API
- Server Side: atmosphere.xml and web.xml configuration
- Client Side: atmosphere.js API