Reputation: 55
I am trying to remove hsqldb files from the jboss server as part of server security. After removing I can't deploy my project while deploying it throws queue not bound exception. Which is normally due to jms queue. Does JMS queue depends on hsqldb? If so is there any workaround.
Upvotes: 0
Views: 71
Reputation: 19445
JMS in JBossAS 5.x (and older) uses a DataSource to store messages. By default, this points at the standard hsqldb one that is configured.
If you remove the hsqldb DataSource you will need to either:
I think you will find that this AS also uses that DataSource for persisting EJB timers.
Upvotes: 1