Re: Problem with getting messages via POP3

2012-12-07 Thread Caa_man
Does anybody use MailComponent for obtaining messages via POP3? Or... Does anybody test Camel-POP3 interaction with more than one message simultaneously? -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-getting-messages-via-POP3-tp5716652p5723761.html Sent from th

Re: ActiveMQ and WebSphereMQ

2012-10-26 Thread Caa_man
Jens is right! I studied all dependencies which were loaded with ActiveMQ. One of dependencies is geronimo-jms_1.1_spec. This jar has javax.jms packages (WHY THE HELL???). As a result I removed geronimo jars from compiled archive and this change yielded application deployment to be Ok.

ActiveMQ and WebSphereMQ

2012-10-24 Thread Caa_man
Hi! We`d like to have camel-route with ActiveMQ and WebSphereMQ adapters simultaneously. Everything works fine if we use WMQ only. But some strange error appears when we add ActiveMQ jars (activemq-camel): ... nested exception is org.springframework.beans.factory.BeanCreationException: Error cr

Re: Distributed transaction in camel route

2012-09-19 Thread Caa_man
http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:tx="http://www.springframework.org/schema/tx"; xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xs

Re: Distributed transaction in camel route

2012-09-18 Thread Caa_man
Thank you! Distributed transaction really works with and com.ibm.mq.jms.MQXAConnectionFactory class using. -- View this message in context: http://camel.465427.n5.nabble.com/Distributed-transaction-in-camel-route-tp5719279p5719521.html Sent from the Camel - Users mailing list archive at Nabb

Re: Sending to remote WMQ queue.

2012-09-15 Thread Caa_man
We changed *to* from useless in our case to : MqRemoteSender implements native message sending (using MQQueueManager and MQQueue) with necessary MQ-settings like remote queue and manager. -- View this message in context: http://camel.465427.n5.nabble.com/Sending-to-remote-WMQ-queue-tp5717052p5

Re: Problem with getting messages via POP3

2012-09-15 Thread Caa_man
Claus Ibsen-2 wrote > > pop3 has limitations with delete/seen flags on processed mail messages. > Sun mail framework works fine with several mail-msgs are obtained via pop3: 1) read n messages one by one from pop3 2) process n messages 3) mark processed messages for deletion (using pop3 command

Distributed transaction in camel route

2012-09-13 Thread Caa_man
Hello! I`d like to built a camel route with this logic: - receive message with XML from WebSphere queue (camel "from") - begin transaction (distributed transaction via "transacted") - parse xml (camel "process") - save income message to Oracle DB (camel "process") - create reply message

Re: Sending to remote WMQ queue.

2012-08-09 Thread Caa_man
We use transmissions queues, not remote. I.e. we dynamically build remote addresses. Could you help me? -- View this message in context: http://camel.465427.n5.nabble.com/Sending-to-remote-WMQ-queue-tp5717052p5717112.html Sent from the Camel - Users mailing list archive at Nabble.com.

Sending to remote WMQ queue.

2012-08-09 Thread Caa_man
Hello! I`d like to send message to the remote queue. I have component (that is local manager): and send message using transport string like this: "wmq:queu

Problem with getting messages via POP3

2012-08-01 Thread Caa_man
Hi! I use this route: Processing is correct if only one message in mailbox. But a lot of messages (f.e. n = 2) in mailbox cause strange processing: 1. All n messages were processed correctly: n messages appear in WebSphere queue. 2. One message was deleted from mailbox. 3. After polling t

Re: Several WMQ Managers

2012-07-30 Thread Caa_man
sorry, but I was mistaken... My old config was: ref*="wmq1:queue:IN"/> ... but it should be written "uri". -- View this message in context: http://camel.465427.n5.nabble.com/Several-WMQ-Managers-tp5716548p5716598.html

Re: Several WMQ Managers

2012-07-30 Thread Caa_man
Thank you for reply. It is strange, but suddenly it worked. Error appeared in deployment stage (Oracle Application Server): Operation failed with error: org.apache.camel.FailedToCreateRouteException: Failed to create route route11: Route[[From[ref:wmq1:queue:IN]] -> [process[ref:inUniversalP... b

Several WMQ Managers

2012-07-27 Thread Caa_man
Hello everyone! I would like to use several MQ managers in my Camel application (I use Camel 2.9.2) like this: ... ...