3
votes
0answers
34 views

Igonre websocket connection in Spring Security SavedRequest

I have Grails application with spring-security-core plugin and Atmosphere framework. If I log out from page that have opened Websocket connection then spring security keeps url of WebSocket ...
2
votes
0answers
73 views

Grails Events Push Failed to Initialize Atmosphere Framework

Deploying a Grails project that uses Events Push Plugin. I keep getting this error. Production environment: Tomcat 7.39 Server: CentOS, Java Version: OpenJDK Runtime Environment (IcedTea6 ...
0
votes
0answers
83 views

Grails atmosphere plugin not working with Tomcat

After including atmosphere plugin to my grails application (only added following to BuildConfig.groovy) compile ":atmosphere:0.4.2.3" Application start normaly when running it with command ...
0
votes
1answer
53 views

Grails and Atmosphere: Rendering templates in a service using Atmosphere push

I'm using Atmosphere 1.0.12 to push data from a server to my clients in a Grails 2.2.1 application. The application is an auction Web site, and I'm pushing updates such as prices, bidder information, ...
0
votes
0answers
43 views

How can I find out what transport is being used by AtmosphereResource in a grails application using the Grails Atmosphere plugin?

I'm using Atmosphere Plugin(v 0.4.2.1) in grails (v 1.3.7). In my onStateChange() method I am trying to get the method of transport for the AtmosphereResource. I tried: AtmosphereResource.transport() ...
0
votes
0answers
36 views

How to configure AtmosphereHandlerService: No AtmosphereHandler found message?

I create atmosphere handlers dynamically. In case of server restart, since the created handlers are lost, I get "No AtmosphereHandler found" exception. I want to configure this message, and send it to ...
2
votes
1answer
93 views

grails server push

I've been evaluating grails server push technologies, and I keep coming across the grails atmosphere plugin, but it doesn't seem like it is actively being developed. I've also seen the grails events ...
0
votes
0answers
85 views

Grails, Atmosphere plugin: push data to only single user or client

How to push data from server side to browser with single connection, not broadcast, using Grails and Atmosphere plugin? Thanks.
1
vote
0answers
149 views

Grails Atmosphere Broadcaster not working [closed]

I am trying to implement atmosphere plugin in my grails application. I have the following code class AtmosphereService { static transactional = true static atmosphere = [mapping: ...
2
votes
1answer
160 views

Grails jms and atmosphere plugin null springSecurityService injection in services

Hello! I am using grails jms and atmosphere plugin... When trying to inject springSecurityService into Jms-Atmosphere Service class, the principal/currentUser is null while there is a reference to ...
1
vote
1answer
87 views

grails post form to another page with async result

I have a form in my app and I would like to allow users to submit the form and be redirected to another page which will update asynchronously as results are available. I'm wondering how to do this. ...
1
vote
0answers
204 views

Deploying Grails Atmosphere app in JBoss 7

Greeting, I'm trying to make this example work in Grails 2.1 using atmosphere plugin. When running in development environment on Tomcat it does not work, probably because Tomcat does not support ...
0
votes
1answer
109 views

Grails Atmosphere Implementation

I am trying to implement auto update feature in my application using atmosphere plugin. I am also planning to use the same plugin to create a chat application. I have searched all over for proper ...
1
vote
2answers
629 views

Disconnecting Atmosphere sockets in Grails

I'm writing a Grails application which uses Atmosphere plugin. The connection works but every time I update the page in a browser I see that my web server adds a new Daemon thread which is never ...
0
votes
1answer
269 views

Grails Atmosphere client makes to many calls

I have a Service like in the documentation: class TestAtmosphereService { static transactional = false static atmosphere = [mapping: '/atmosphere/test'] def onRequest = { event -> .... } ...
0
votes
1answer
710 views

Grails Atmosphere Plugin broadcast to different clients

I'm trying to extend the Groovy Mag Atmosphere Example (https://github.com/rbramley/GroovyMagJMS) to broadcast to different clients. (Like in Broadcasting to a subset of subscribers in Atmosphere) A ...
0
votes
1answer
799 views

Grails 2.0, Atmosphere-Plugin and WebSockets

I am trying to get a sample WebSocket app running on grails 2.0 with jetty 7.5 in dev mode. I generated a simple AtmosphereHandler, but whenever I try to connect via a WebSocket I get the following ...
1
vote
3answers
2k views

good example for grails using atmosphere plugin

I am looking for a good example or tutorial which deals with grails and the atmosphere plugin. The tutorials i found seems like to miss some information to get my examples working. thanks
1
vote
2answers
273 views

Injecting service into Grails Atmosphere Handler class

I have an NotificationsAtmosphereHandler as an Atmosphere framework handler class in my Grails application. I would like to use springSecurityService service inside of it. How I can inject service ...
1
vote
2answers
328 views

Getting GWT and Grails with Atmosphere plugin to work together

I was able to successfully get the GWT Atmosphere demo project as well as the Grails atmosphere project up and running. However, when using the Grails backend to power up the GWT Atmosphere client, it ...
2
votes
3answers
1k views

Broadcasting to a subset of subscribers in Atmosphere

What I'm trying to do: Be able to have users subscribed to a number of different 'chat rooms' and use reverse AJAX / comet to send messages from a chat room to everyone logged into that room. (a bit ...
1
vote
2answers
605 views

Atmosphere Grails single user broadcast

I'm creating a Grails application which makes use of the Atmosphere plugin to push data to the browser. However I'm having trouble in creating a broadcast channel to a single user (the session's ...
0
votes
1answer
316 views

Grails atmosphere plugin problem

I'm using the Atmosphere plugin in a Grails application to make Ajax push calls to the client. The basic architecture is, I have a loop in the server which creates the data that I want to push to the ...