This content has been marked as final.
Show 2 replies
-
1. Re: How to get hold of sessionId using Errai-bus
csa Nov 16, 2011 10:54 AM (in response to stab)You could do the following:
{code:java}
SessionContext ctx = SessionContext.get(message);
ctx.getSession().getSessionId();
{code}
which will return a String formatted as QueueId@SessionId.
Of course, you could also use a custom message part that holds just the session id.
-
2. Re: How to get hold of sessionId using Errai-bus
stab Nov 17, 2011 8:06 AM (in response to csa)Thanks a lot
Regards
stab