atmosphere icon indicating copy to clipboard operation
atmosphere copied to clipboard

Event Driven WebSockets Framework with Cross-Browser Fallbacks

Results 51 atmosphere issues
Sort by recently updated
recently updated
newest added

I use atmosphere 2.4.28 and tomcat 9.0.5 My servlet config: ``` MyServlet org.apache.cxf.transport.servlet.CXFServlet ... org.atmosphere.cpr.asyncSupport org.atmosphere.container.JSR356AsyncSupport true MyServlet /api/* ``` Also, I have multiple server endpoints associated with this servlet:...

current setup spring application: ``` org.atmosphere.extensions.atmosphere-gwt20-client v2.4.21 org.atmosphere.extensions.atmosphere-gwt20-server v2.4.21 org.atmosphere.atmosphere-runtime v2.4.21 tomcat container: v7.0.75 atmosphere client config: atmosphere.defaultTransport=streaming atmosphere.fallbackTransport=long-polling atmosphere.connectTimeout=-1 atmosphere.timeout=300000 atmosphere.logLevel=debug atmosphere.maxReconnectOnClose=5 atmosphere.reconnectInterval=0 ``` This issue got our intention,...

Hello, we are getting this error on Webspher 8.5 and Vaadin 7.7.3. There is a problem with atmosphere initialization, but I was unable to find a solution. May you give...

This issue was reported in PrimeFaces: https://github.com/primefaces/primefaces/issues/82 For those unfamiliar with Web Fragments a nice explanation here: https://blogs.oracle.com/swchan/servlet-30-web-fragmentxml I have traced the issue to the fact that in AtmosphereFramework.java it...

I have a strange problem. When i call unsubscribe() from javascript the server receive correctly the disconnect event: @Disconnect public void onDisconnect(AtmosphereResourceEvent event) But then i receive again another connect....

org.atmosphere.websocket.maxTextMessageSize should be allowed configure per handler, global one make all handler use same buffer size for Session. this make memory usage can increase by unnecessary. Such as there are...

at org/atmosphere/websocket/DefaultWebSocketProcessor.java:449,465 ``` java if (!WebSocketProtocolStream.class.isAssignableFrom(webSocketProtocol.getClass())) { List list = webSocketProtocol.onMessage(webSocket, webSocketMessage); dispatch(webSocket, list); } else { --> logger.debug("The WebServer doesn't support streaming. Wrapping the message as stream."); invokeWebSocketProtocol(webSocket, new...

This came up because of Atmosphere/atmosphere#1998 and eclipse/jetty.project#660 Per the Servlet Spec 3.1 - Section 3.12 (page 3-31) ... > Each request object is valid only within the scope of...

Refer to original thread: https://groups.google.com/forum/#!topic/atmosphere-framework/Uzd7yLVqTfk > **jfarcand:** > When doing addBroadcaster, the AtmosphereResource is not automatically added to the Broadcaster, e.g broadcaster.addAtmosphereResource(). When doing setBroadcaster, it is added when you...

Enhancement
2.4.0
2.3.4

A call to `Broadcaster.broadcast` inside a mapped method will produce recusion if the same method maps again. The following code should work but isn't with 2.1.5+ ``` java @org.atmosphere.config.service.Message(encoders =...

2.4.0
2.3.4