Re: Can't figure out why send to my temporary queue doesn't work but Listener seems OK

2007-04-02 Thread sparky2708
Thanks James. I figured it out. This link was VERY HELPFUL: http://activemq.apache.org/how-should-i-implement-request-response-with-jms.html sparky2708 wrote: > > What I am trying to accomplish is that I need a temporary queue that I can > use like a control queue. I would like my clients t

Re: Can't figure out why send to my temporary queue doesn't work but Listener seems OK

2007-04-02 Thread sparky2708
What I am trying to accomplish is that I need a temporary queue that I can use like a control queue. I would like my clients to be able to send messages to a service's control queue (this could be permanent) and the service would be able to send responses to each client's control queue (indicated

Re: Can't figure out why send to my temporary queue doesn't work but Listener seems OK

2007-04-02 Thread sparky2708
That was my workaround. It would be convenient if we could just send by name... Thanks :-) James.Strachan wrote: > > On 4/2/07, sparky2708 <[EMAIL PROTECTED]> wrote: >> >> I create a temporary queue using: >> >> String user = ActiveMQConnection.DEFAULT_USER; >> String password = ActiveMQConnect

Re: Can't figure out why send to my temporary queue doesn't work but Listener seems OK

2007-04-02 Thread James Strachan
On 4/2/07, sparky2708 <[EMAIL PROTECTED]> wrote: I create a temporary queue using: String user = ActiveMQConnection.DEFAULT_USER; String password = ActiveMQConnection.DEFAULT_PASSWORD; ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(user, password, jms_url); _connect

Can't figure out why send to my temporary queue doesn't work but Listener seems OK

2007-04-02 Thread sparky2708
I create a temporary queue using: String user = ActiveMQConnection.DEFAULT_USER; String password = ActiveMQConnection.DEFAULT_PASSWORD; ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(user, password, jms_url); _connection = connectionFactory.createConnection(); _connec