• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

jboss standalone-full.xml

 
Ranch Hand
Posts: 987
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Could you hold this puppy for a sec? I need to adjust this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic