Hi,

Was wondering if anyone ran into this problem and has insight they can
share.

I started experimenting w/ Message Driven Beans and  have deployed a MDB
that was attached to a Queue.  It worked and was performing my logic w/in
onMessage().  I wanted to have it reply to another Queue so created a second
Queue to reply to (simply by adding it to jms.xml)  and this was deployed
(as witnessed on the orion console).  The problem I'm encountering is that
my original messages are no longer received once I added the second queue
w/in jms.xml.  I haven't even changed any code.  By commenting out the new
Queue w/in jms.xml, my original MDB again works.  Any ideas on this?  

I'm running 1.5.2.

My jms.xml looks like

<?xml version="1.0"?>
<!DOCTYPE jms-server PUBLIC "Orion JMS server"
"http://www.orionserver.com/dtds/jms-server.dtd";>

<jms-server port="9127">


        <queue-connection-factory host="localhost"
location="jms/QueueConnectionFactory" username="admin" password="admin"
port="9127" />  
<!--    <topic-connection-factory host="localhost"
location="jms/TopicConnectionFactory" username="admin" password="admin"
port="9127" /> -->


        <queue name="Test Message Driven Bean" location="jms/testQueue">
                <description>Test of MDB</description>
        </queue> 
        
        
        <queue name="Reply Bean" location="jms/replyQueue">
                <description>reply Queue</description>
        </queue>
        
        
<!--    <topic name="Test Message Driven Bean for Topic"
location="jms/testTopic">
                <description>Test of MDB Topic</description>
        </topic>
        
        
        <topic name="Stock Market" location="jms/StockMarket">
                        <description>Stock Market</description>
        </topic>

        <topic name="Demo Topic" location="jms/demoTopic">
                <description>A dummy topic</description>
        </topic>   
-->

        <log>
                <file path="../log/jms.log" />
        </log>
</jms-server>



Thanks,

Steve

Attachment: Kosten, Steve.vcf
Description: Binary data

Reply via email to