The JBoss-JMS-Implementation (look at all these example topics and queues...) persists 
(depending on the configuration, sure) the messages. Where? By default in the 
DefaultDS.

Two ways to solve the problem (at least): 

1. Do not replace the DefaultDS by your OracleDS but add your OracleDS, and then 
modify your 
<jboss_home>\server\<your_config_dir_eg_default>\conf\standardjbosscmp-jdbc.xml:

<defaults>
  |       <datasource>java:/DefaultDS</datasource>
  |       <datasource-mapping>Hypersonic SQL</datasource-mapping>
  |       [...]
  | </defaults>

to 

<defaults>
  |       <datasource>java:/OracleDS</datasource>
  |       <datasource-mapping>Oracle8</datasource-mapping>
  |       [...]
  | </defaults>
  | 
Very global defaults :-( . Or add an defaults-node in your jbosscmp-jdbc.xml in the 
META-INF-dir of your ejb-jar.

2. Modify the JMS-Deployment provided with JBoss. Look at the jms-subdirectory in the 
deploy-directory and maybe start by reading the comment after the -tag :-)


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3848924#3848924

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3848924


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to