Atmosphere-2.0.0.RC5, Primefaces-4.0.RC1
I managed to make a workaround, which is really not very nice, but clicking on all made it work. May be enough for your use.
pushContext.push("/*", facesMsg);
Edit: So I did another debug and added some more logs
if (BroadcasterFactory.getDefault() != null) { Collection<Broadcaster> list = BroadcasterFactory.getDefault().lookupAll(); for (Broadcaster b : list) { logger.warn("id={}", b.getID() ); } }
exit:
Info: 2013-09-17 22:43:10,010 - id=/* Info: 2013-09-17 22:43:10,010 - id=/notificationsprimepush
finally i tried:
pushContext.push("/notifications" + "primepush", facesMsg);
HAVE WORKED!:)
source share