-
1. Re: How to use always the same port for ejb-call
ron_sigal Jul 17, 2012 6:23 PM (in response to redcar)1 of 1 people found this helpfulHi Werner,
Sorry for the delay.
Once a worker thread is created, it will be reused. In particular, once it completes an invocation, it will sit in a read() waiting for the next invocation. If you do no more than one invocation at a time, the same worker thread should handle all of them.
If you do more than one invocation at a time, you could limit the number of worker threads to one. That way, if an invocation comes in while the single worker thread is busy, the server will wait until the worker thread finishes processing its invocation and then use it for the new invocation. You can limit the number of worker threads in the configuration file $JBOSS_HOME/server/$CONFIG/deploy/ejb3-connectors-jboss-beans.xml by changing the line
<parameter>socket://${jboss.bind.address}:${port}</parameter>
to
<parameter>socket://${jboss.bind.address}:${port}/?maxPoolSize=1</parameter>
-Ron
-
2. Re: How to use always the same port for ejb-call
redcar Jul 19, 2012 3:49 AM (in response to ron_sigal)Thank you Ron,
blocking of invocations is not so good. So a maxPoolSize of 1 is not a very good idea perhaps.
I will try some different settings in combination with a bigger port range.
Best regards,
Werner