Hi,
When do we need to to configure to use
jboss standalone-full.xml instead of default jboss standalone.xml as below
Prior to it add the queue entry to it as below jboss standalone-full.xml
<subsystem xmlns="urn:jboss:domain:messaging:1.1">
<hornetq-server>
...
<jms-destinations>
<jms-queue name="testQueue14">
<entry name="queue/testQueue14"/>
<entry name="java:jboss/exported/jms/queue/testQueue14"/>
</jms-queue>
</jms-destinations>
Eclipse "Window" menu -> "Show View" -> "Servers"
===> On the "Servers" view, double click on JBoss server===>
===>goto "Overview" window displaying JBoss config.
===>click link "Open launch configuration".
===>"Edit launch configuration properties"
==>goto "Arguments" tab.
===> Deselect the "Always update arguments related to the runtime."
====> In the "Program arguments" box, update the "server-config" to server-config=standalone-full.xml
Why we do "Deselect the "Always update arguments related to the runtime." step.
Also what is the purpose of @Remove annotation in the ShoppingCartImpl class?
what is purpose of below entries in standalone.xml
<session-bean>
<stateless>
<bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
</session-bean>
</stateless>
also
<bean-instance-pool>
<strict-max-pool name="slsb-strict-max-pool" max-pool-size="20" instance-acquision-timeout="5" instance-acquision-timeout-unit="MINUTES">
Please advice. Any links, resources, ideas, sample code highly appreciated.