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
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
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
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
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