Where to define IBATIS XML in ActiveMq.xml

2008-11-07 Thread Woody Dickson
Hi, When using iBatis as the endpoint, where can I specify the name of the iBATIC SQL Config file within the ActiveMq.xml? Thanks in advance for your help. Woody

activemq dying

2008-11-07 Thread AD
hello, No matter what i try activemq 5.1 just keeps dying with the following messages after a few hours. ANy idea what these errors are ? 2008-11-06 09:42:04,715 [MQ ShutdownHook] INFO BrokerService - ActiveMQ Message Broker (ri-cache1, ID:ri-cache1-58063-1225974433573-0:0) is shutting down

Re: iBates configuration

2008-11-07 Thread Mick Knutson
1. Camel is just a framework to build applications the inter operate with activeMQ. So this is separate. 2. You should find all the sql references you need in the iBatis docs. On Fri, Nov 7, 2008 at 8:39 AM, Woody Dickson <[EMAIL PROTECTED]>wrote: > Hi, > > I would like to try using iBates wit

iBates configuration

2008-11-07 Thread Woody Dickson
Hi, I would like to try using iBates with ActiveMq as presented in http://activemq.apache.org/camel/ibatis.html, but I am having a few questions: In order to use Camel with ActiveMq, do I need to download Camel or it is already included in the ActiveMq package? Where can I define the different s

Re: Question about implementing ActiveMQ

2008-11-07 Thread Juan Backson
Hi, I was able to get a small test program written to send STOMP message to activemq and able to receive the message from Telnet. What I want to do next is to change the receiving side from a Telnet client to a java POJO. What this POJO is going to do is just to read the STOMP message and filte

Re: problem while sending message to ActiveMQ JMS queue

2008-11-07 Thread Gary Tully
I don't see any obvious issue with the code below but a good starting point may be to run up the producer/consumer examples from an activemq install. see: http://activemq.apache.org/examples.html ant producer will push 100 messages to a queue for sure. Then look at the Queues using jconsole or the

Re: Configuring ActiveMQ in OSGi containers

2008-11-07 Thread Dejan Bosanac
Hi Christopher, the servicemix.activemq bundle does exactly what you are describing. It just instantiates ActiveMQ using the external configuration file. You can start exploring that code and create your own bundle that will better fit your application. Cheers -- Dejan Bosanac http://www.ttms

problem while sending message to ActiveMQ JMS queue

2008-11-07 Thread manish_goyal
Hi, I am trying to send one String message to ActiveMQ JMS queue using JAVA application, but it's not showing in JMS queue. my JAVA client program is as follows:- import javax.jms.Connection; import javax.jms.MessageConsumer; import javax.jms.MessageProducer; import javax.jms.Session; import ja

Data Handling in AMQ

2008-11-07 Thread smo001
Hi all, I've got a question about the data handling in active MQ. If i send messages to a queue and i'd like to transform them, what happens if the transformation causes an error? Is ist possible to check and resend the message and where can i find messages which causes errors in transformation?

Re: Searching for a string in messages of queues

2008-11-07 Thread pablomano
I've looked at content based router and it seems to me that this is used to route messages which are located on a queue. What I'd like to know is whether there are messages located on a queue having a certain data in their body. Something like searchQueueMessage(string queue, string pattern) fun

thread is stuck if activemq not started

2008-11-07 Thread Robin Nagpal
Hi I am using this code to create a session which I will use to create a publisher private ConnectionFactory cf=new ActiveMQConnectionFactory(AMQ_USER, AMQ_PASSWORD, this.AMQ_URL); private Connection connection = cf.createConnection(); session = connection.createSession(false, Se