edit ConsumerTool.java, in line 93 its originally: Session session = connection.createSession(transacted, ackMode);
edit it to be: session = connection.createSession(transacted, ackMode); The session is already defined as a global variable and defining it again there was making its scope limited to the run function. That's why the session becomes null when the replyProducer.send() command is invoked. Compile it again, and the consumer will now receive the messages. Hope this helps, Ken Danny Garcia Hernandez wrote: > > Hi, i have problem with RequestorTool example inside > apache-activemq-4.1.0. When typing > ant requester the program run ok, producer send the first message and > wait for receive it on consumer, but consumer queue dont have nothing. > Any hint?. > > All other examples are working in my system. > > Thanks > Danny > > -- View this message in context: http://www.nabble.com/RequestorTool-Example-tf2638240.html#a7373791 Sent from the ActiveMQ - User mailing list archive at Nabble.com.