grails-events-push icon indicating copy to clipboard operation
grails-events-push copied to clipboard

Events Push

Results 29 grails-events-push issues
Sort by recently updated
recently updated
newest added

I am using Events-Push in my grails application. every thing is fine when running application from my IDE (IntelliJ Idea). but when I deploy it to tomcat (7.0) following exception...

I have 2 events configured: ``` groovy import org.atmosphere.cpr.AtmosphereRequest import org.grails.plugin.platform.events.EventMessage def eventsSecurityService = ctx.eventsSecurityService events = { 'message' namespace='browser', browserFilter: { EventMessage msg, AtmosphereRequest request -> eventsSecurityService.checkPermission(msg, request) }...

When I define a given event using browser:true it doesn't accept events from the browser. ``` groovy events = { 'savedTodo' browser:true // allows browser push on this topic }...

Please add export = false for this runtime dependency in the plugin (I assume users of the plugin don't actually need to be on that version of resources?)

Hello. I'm developing a application that uses this plugin and I'm trying to send data bytes in the "send" event, from the browser. I want to send bytes data from...

I have the following code events = { ``` "processed" namespace: 'browser', browser: true ``` } code in the service def map= [:] map.json = data event('processed',map,{}) code on the...

something for the wish list Stephane.... on two separate occassions I ran into no hibernate session bound to the thread problems. I can plop a DomainClass.withTransaction { -> closure in...

Lets say I have this in my Events DSL: ``` 'afterInsert' namespace: 'gorm', filter: com.mycompany.Dog, browser: true ``` Can I then add ?: ``` 'afterInsert' namespace: 'gorm', filter: com.mycompany.Cat, browser:...

Hi, It seems that this plugin will cause the malfunction of atmosphere plugin...... I have a chat application works well before install it. After the installation, the chat application reconnecting...