I up the topic cause I still couldn't implements that DataBase Resource Bundle.
I now have all the needed classes, following the steps described by pbrewer_uk, but I'm having trouble knowing what code to implements in what class. For example, I don't know what DBControl class is exactly supposed to do and when, and I don't know where to put the code to retrieve the messages from the DB neither (probably in the getKeys method of the ResourceBundle extended class?).
Moreover, I don't know how to set up my Resource Bundle to be used instead of the default one (using Seam 2.0).
Thanks for your help.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059804#4059804
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059804
JBossAS and JBoss Application Server is the same thing.
JBoss Web is the web container of JBoss, based on the code of apache tomcat + extensions.
JBoss Web runs inside the JBossAS runtime, so when you "run" JBoss Web you are essentially running JBossAS.
I believe there is also a "standalone" bundle of JBoss Web that is essentially a JBoss AS configuration that includes only the minimum modules required to run JBoss Web.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059800#4059800
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059800
The problem was with not defining the "Queue/Topic" in the default destination-service.xml thats part of jboss-messaging.sar .
You can have your own *-service.xml where u can define your custom Queue/Topics and make it available .
Ex:
<mbean code="org.jboss.jms.server.destination.QueueService"
name="jboss.messaging.destination:service=Queue,name="MyQueue"
xmbean-dd="xmdesc/Queue-xmbean.xml">
<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer
jboss.messaging:service=PostOffice
--This will resolve the Destination Manager not registered Issue..
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059798#4059798
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059798