Ankit Duggal
Ankit Duggal

Reputation: 55

Does JMS require hsqldb files in jboss 5.x?

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

Answers (1)

Steve C
Steve C

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:

  • Replace it with your database
  • Remove the standard JMS queue & topic configurations

I think you will find that this AS also uses that DataSource for persisting EJB timers.

Upvotes: 1

Related Questions