The logs after the initialization seem to indicate that there's socket handlers being scanned when I don't think they should be...
It creates the first application and then scans both SocketHandlers despite the app initialization not including the entire package. I am using Spring's @ComponentScan(basePackages = {
to tell Spring to scan my whole application. Could that be the cause of the issue? *goes to investigate ExcludeFilters*
INFO: [ProductionQueue] Servlet [com.sun.jersey.spi.spring.container.servlet.SpringServlet] registered for url pattern(s) [[/api/*]].
13:11:09,081 INFO main org.atmosphere.cpr.AtmosphereFramework:1721 - Atmosphere is using org.atmosphere.cpr.DefaultAnnotationProcessor for processing annotation
13:11:09,104 INFO main org.atmosphere.cpr.AtmosphereFramework:1159 - Auto detecting atmosphere handlers /WEB-INF/classes/
13:11:09,105 INFO main org.atmosphere.cpr.AtmosphereFramework:1214 - Auto detecting WebSocketHandler in /WEB-INF/classes/
13:11:09,106 INFO main org.atmosphere.cpr.AtmosphereFramework:936 - Installed WebSocketProtocol org.atmosphere.websocket.protocol.SimpleHttpProtocol
13:11:09,126 INFO main org.atmosphere.cpr.AtmosphereFramework:1140 - Atmosphere is using async support: org.atmosphere.container.Grizzly2WebSocketSupport running under container: Grizzly 2.2.21 with WebSocket enabled.
13:11:09,136 INFO main org.atmosphere.cpr.AtmosphereFramework:614 - Installed Default AtmosphereInterceptor [Android Interceptor Support, SSE Interceptor Support, JSONP Interceptor Support, Atmosphere JavaScript Protocol, Browser disconnection detection]. Set org.atmosphere.cpr.AtmosphereInterceptor.disableDefaults in your xml to disable them.
13:11:09,137 WARN main org.atmosphere.cpr.AtmosphereFramework:536 - No BroadcasterCache configured. Broadcasted message between client reconnection will be LOST. It is recommended to configure the org.atmosphere.cache.UUIDBroadcasterCache
13:11:09,137 INFO main org.atmosphere.cpr.AtmosphereFramework:556 - Shared ExecutorService supported: true
13:11:09,137 INFO main org.atmosphere.cpr.AtmosphereFramework:557 - HttpSession supported: false
13:11:09,137 INFO main org.atmosphere.cpr.AtmosphereFramework:558 - Using BroadcasterFactory: org.atmosphere.cpr.DefaultBroadcasterFactory
13:11:09,138 INFO main org.atmosphere.cpr.AtmosphereFramework:559 - Using WebSocketProcessor: org.atmosphere.websocket.DefaultWebSocketProcessor
13:11:09,138 INFO main org.atmosphere.cpr.AtmosphereFramework:560 - Using Broadcaster: org.atmosphere.cpr.DefaultBroadcaster
13:11:09,139 INFO main org.atmosphere.cpr.AtmosphereFramework:561 - Atmosphere Framework 1.0.12 started.
13:11:09,146 INFO main
com.github.flowersinthesand.portal.App:82 - Initializing Portal application with options {name=/socket/admin, url=/socket/admin, packages=[com.production.socket, com.github.flowersinthesand.portal.atmosphere], beans={}} and modules [com.production.AtmosphereModule@3fd60121, com.github.flowersinthesand.portal.spring.SpringModule@7ae43e44]
13:11:09,148 INFO main
com.github.flowersinthesand.portal.App:90 - Final options {name=/socket/admin, url=/socket/admin, packages=[com.production.socket, com.github.flowersinthesand.portal.atmosphere, com.production, com.github.flowersinthesand.portal.spring, com.github.flowersinthesand.portal.support], beans={url=/socket/admin, org.atmosphere.cpr.AtmosphereFramework=org.atmosphere.cpr.AtmosphereFramework@5ad5c40d, com.github.flowersinthesand.portal.spi.ObjectFactory=com.github.flowersinthesand.portal.spring.SpringObjectFactory@83a6012}}
13:11:09,236 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'dispatcher.Evaluator' is defined
13:11:09,237 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultDispatcher$DefaultEvaluator] is defined: expected single bean but found 0:
13:11:09,237 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'dispatcher' is defined
13:11:09,238 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultDispatcher] is defined: expected single bean but found 0:
13:11:09,239 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'roomFactory' is defined
13:11:09,240 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultRoomFactory] is defined: expected single bean but found 0:
13:11:09,240 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'heartbeatHandler' is defined
13:11:09,241 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.HeartbeatHandler] is defined: expected single bean but found 0:
13:11:09,241 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'replyHandler' is defined
13:11:09,242 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.ReplyHandler] is defined: expected single bean but found 0:
13:11:09,255 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'roomSupportHandler' is defined
13:11:09,256 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.RoomSupportHandler] is defined: expected single bean but found 0:
13:11:09,257 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'socketFactory' is defined
13:11:09,258 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory] is defined: expected single bean but found 0:
13:11:09,532 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("evaluator") on 'private com.github.flowersinthesand.portal.spi.Dispatcher$Evaluator com.github.flowersinthesand.portal.support.DefaultDispatcher.evaluator'
13:11:09,546 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,553 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,553 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("heartbeat") on 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.heartbeat(com.github.flowersinthesand.portal.Socket)'
13:11:09,553 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'heartbeat' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.heartbeat(com.github.flowersinthesand.portal.Socket)'
13:11:09,554 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.ReplyHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,554 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("reply") on 'public void com.github.flowersinthesand.portal.support.ReplyHandler.reply(com.github.flowersinthesand.portal.Socket,java.util.Map)'
13:11:09,554 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'reply' event from 'public void com.github.flowersinthesand.portal.support.ReplyHandler.reply(com.github.flowersinthesand.portal.Socket,java.util.Map)'
13:11:09,557 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("roomFactory") on 'private com.github.flowersinthesand.portal.spi.RoomFactory com.github.flowersinthesand.portal.support.RoomSupportHandler.roomFactory'
13:11:09,558 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.RoomSupportHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,558 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.github.flowersinthesand.portal.support.RoomSupportHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,561 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.production.socket.AdminSocketHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,561 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.production.socket.AdminSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,561 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("completeWork") on 'public void com.production.workflow.process.approval.ApprovalSocketHandler.completeWork(com.production.workflow.process.approval.socket.request.CompleteWorkRequest)'
13:11:09,561 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'completeWork' event from 'public void com.production.workflow.process.approval.ApprovalSocketHandler.completeWork(com.production.workflow.process.approval.socket.request.CompleteWorkRequest)'
13:11:09,561 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("getDashboard") on 'public com.production.workflow.process.approval.socket.response.Dashboard com.production.workflow.process.approval.ApprovalSocketHandler.getDashboard(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,561 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'getDashboard' event from 'public com.production.workflow.process.approval.socket.response.Dashboard com.production.workflow.process.approval.ApprovalSocketHandler.getDashboard(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,562 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("getWorkstation") on 'public com.production.workflow.process.Workstation com.production.workflow.process.approval.ApprovalSocketHandler.getWorkstation(com.github.flowersinthesand.portal.Socket,com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,562 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'getWorkstation' event from 'public com.production.workflow.process.Workstation com.production.workflow.process.approval.ApprovalSocketHandler.getWorkstation(com.github.flowersinthesand.portal.Socket,com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,562 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("open") on 'public void com.production.workflow.process.approval.socket.WorkstationSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,562 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.production.workflow.process.approval.socket.WorkstationSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,562 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("makeActive") on 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeActive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,562 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'makeActive' event from 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeActive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,576 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("makeInactive") on 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeInactive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,576 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'makeInactive' event from 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeInactive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,577 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("framework") on 'private org.atmosphere.cpr.AtmosphereFramework com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory.framework'
13:11:09,577 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("dispatcher") on 'protected com.github.flowersinthesand.portal.spi.Dispatcher com.github.flowersinthesand.portal.support.AbstractSocketFactory.dispatcher'
13:11:09,577 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("replyHandler") on 'protected com.github.flowersinthesand.portal.support.ReplyHandler com.github.flowersinthesand.portal.support.AbstractSocketFactory.replyHandler'
13:11:09,615 INFO main org.atmosphere.cpr.AtmosphereFramework:258 - Installed AtmosphereHandler com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory mapped to context-path: /socket/admin
13:11:09,616 INFO main
com.github.flowersinthesand.portal.App:82 - Initializing Portal application with options {name=/socket/workstation/approval, url=/socket/workstation/approval, packages=[com.production.workflow.process.approval, com.github.flowersinthesand.portal.atmosphere], beans={}} and modules [com.production.AtmosphereModule@3f3b94c, com.github.flowersinthesand.portal.spring.SpringModule@760a2e9a]
13:11:09,616 INFO main
com.github.flowersinthesand.portal.App:90 - Final options {name=/socket/workstation/approval, url=/socket/workstation/approval, packages=[com.production.workflow.process.approval, com.github.flowersinthesand.portal.atmosphere, com.production, com.github.flowersinthesand.portal.spring, com.github.flowersinthesand.portal.support], beans={url=/socket/workstation/approval, org.atmosphere.cpr.AtmosphereFramework=org.atmosphere.cpr.AtmosphereFramework@5ad5c40d, com.github.flowersinthesand.portal.spi.ObjectFactory=com.github.flowersinthesand.portal.spring.SpringObjectFactory@1679bd01}}
13:11:09,642 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'dispatcher.Evaluator' is defined
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultDispatcher$DefaultEvaluator] is defined: expected single bean but found 0:
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'dispatcher' is defined
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultDispatcher] is defined: expected single bean but found 0:
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'roomFactory' is defined
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.DefaultRoomFactory] is defined: expected single bean but found 0:
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'heartbeatHandler' is defined
13:11:09,643 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.HeartbeatHandler] is defined: expected single bean but found 0:
13:11:09,644 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'replyHandler' is defined
13:11:09,644 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.ReplyHandler] is defined: expected single bean but found 0:
13:11:09,644 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'roomSupportHandler' is defined
13:11:09,644 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.support.RoomSupportHandler] is defined: expected single bean but found 0:
13:11:09,645 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:39 - No bean named 'socketFactory' is defined
13:11:09,645 DEBUG main com.github.flowersinthesand.portal.spring.SpringObjectFactory:43 - No unique bean of type [com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory] is defined: expected single bean but found 0:
13:11:09,647 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("evaluator") on 'private com.github.flowersinthesand.portal.spi.Dispatcher$Evaluator com.github.flowersinthesand.portal.support.DefaultDispatcher.evaluator'
13:11:09,648 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,648 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,648 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("heartbeat") on 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.heartbeat(com.github.flowersinthesand.portal.Socket)'
13:11:09,648 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'heartbeat' event from 'public void com.github.flowersinthesand.portal.support.HeartbeatHandler.heartbeat(com.github.flowersinthesand.portal.Socket)'
13:11:09,649 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.ReplyHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,649 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("reply") on 'public void com.github.flowersinthesand.portal.support.ReplyHandler.reply(com.github.flowersinthesand.portal.Socket,java.util.Map)'
13:11:09,649 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'reply' event from 'public void com.github.flowersinthesand.portal.support.ReplyHandler.reply(com.github.flowersinthesand.portal.Socket,java.util.Map)'
13:11:09,651 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("roomFactory") on 'private com.github.flowersinthesand.portal.spi.RoomFactory com.github.flowersinthesand.portal.support.RoomSupportHandler.roomFactory'
13:11:09,651 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.github.flowersinthesand.portal.support.RoomSupportHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,651 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.github.flowersinthesand.portal.support.RoomSupportHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,652 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'close' event from 'public void com.production.socket.AdminSocketHandler.close(com.github.flowersinthesand.portal.Socket)'
13:11:09,652 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.production.socket.AdminSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,653 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("completeWork") on 'public void com.production.workflow.process.approval.ApprovalSocketHandler.completeWork(com.production.workflow.process.approval.socket.request.CompleteWorkRequest)'
13:11:09,653 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'completeWork' event from 'public void com.production.workflow.process.approval.ApprovalSocketHandler.completeWork(com.production.workflow.process.approval.socket.request.CompleteWorkRequest)'
13:11:09,653 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("getDashboard") on 'public com.production.workflow.process.approval.socket.response.Dashboard com.production.workflow.process.approval.ApprovalSocketHandler.getDashboard(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,653 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'getDashboard' event from 'public com.production.workflow.process.approval.socket.response.Dashboard com.production.workflow.process.approval.ApprovalSocketHandler.getDashboard(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,653 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("getWorkstation") on 'public com.production.workflow.process.Workstation com.production.workflow.process.approval.ApprovalSocketHandler.getWorkstation(com.github.flowersinthesand.portal.Socket,com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,653 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'getWorkstation' event from 'public com.production.workflow.process.Workstation com.production.workflow.process.approval.ApprovalSocketHandler.getWorkstation(com.github.flowersinthesand.portal.Socket,com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,654 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("open") on 'public void com.production.workflow.process.approval.socket.WorkstationSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,654 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'open' event from 'public void com.production.workflow.process.approval.socket.WorkstationSocketHandler.open(com.github.flowersinthesand.portal.Socket)'
13:11:09,654 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("makeActive") on 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeActive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,654 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'makeActive' event from 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeActive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,654 DEBUG main
com.github.flowersinthesand.portal.App:225 - @On("makeInactive") on 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeInactive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,654 DEBUG main com.github.flowersinthesand.portal.support.DefaultDispatcher:61 - Attaching the 'makeInactive' event from 'public java.lang.Boolean com.production.workflow.process.approval.socket.WorkstationSocketHandler.makeInactive(com.production.workflow.process.approval.socket.request.WorkstationRequest)'
13:11:09,655 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("framework") on 'private org.atmosphere.cpr.AtmosphereFramework com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory.framework'
13:11:09,655 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("dispatcher") on 'protected com.github.flowersinthesand.portal.spi.Dispatcher com.github.flowersinthesand.portal.support.AbstractSocketFactory.dispatcher'
13:11:09,655 DEBUG main
com.github.flowersinthesand.portal.App:190 - @Wire("replyHandler") on 'protected com.github.flowersinthesand.portal.support.ReplyHandler com.github.flowersinthesand.portal.support.AbstractSocketFactory.replyHandler'
13:11:09,655 INFO main org.atmosphere.cpr.AtmosphereFramework:258 - Installed AtmosphereHandler com.github.flowersinthesand.portal.atmosphere.AtmosphereSocketFactory mapped to context-path: /socket/workstation/approval
INFO: [ProductionQueue] Servlet [com.production.socket.SocketInitializer] registered for url pattern(s) [].