This content has been marked as final.
Show 2 replies
-
1. Re: Synchronization on producer.send(message)
ataylor Oct 25, 2012 3:56 PM (in response to sudovenko)as per the JMS spec, sessions should not be used concurrently, this is the same with the core API. you should either use 1 session per thread or use a pool and syncronize your access
-
2. Re: Synchronization on producer.send(message)
sudovenko Oct 25, 2012 4:00 PM (in response to ataylor)Thank you Andy. It isn't a option in my case to have multiple session, thus I will syncronize.