Re: After publish (OutOnly): Reply received for unknown correlationID

2011-02-03 Thread Claus Ibsen
Use the disableReplyTo option to not expect any replies. On Fri, Feb 4, 2011 at 7:11 AM, enalposi wrote: > > Nope, too early. It's still creating temp reply listeners on OutOnly routes > > > 2011-02-04 01:10:00,784 | INFO  | ent.jms.reply.TemporaryQueueReplyManager | > doStart          | ead #2

Re: JPA Quandary

2011-02-03 Thread Claus Ibsen
On Fri, Feb 4, 2011 at 4:06 AM, Mark Borner wrote: > > Hi all: > > I'm in a bit of a pickle. I'm trying to use a JPA endpoint as a consumer. > I first started by using the "consumer.namedQuery" option to use Hibernate > HQL from the entity's @NamedQuery annotation. This worked well and the > en

Re: After publish (OutOnly): Reply received for unknown correlationID

2011-02-03 Thread enalposi
Nope, too early. It's still creating temp reply listeners on OutOnly routes 2011-02-04 01:10:00,784 | INFO | ent.jms.reply.TemporaryQueueReplyManager | doStart | ead #2 - Threads | Starting reply listener container on endpoint: Endpoint[jms://topic:esb_topic_status] 2011-02-04 01:10:00

Re: camel-smpp - disconnect problem

2011-02-03 Thread Claus Ibsen
On Fri, Feb 4, 2011 at 2:36 AM, Alex MadMind wrote: > Hello! > > I use camel-smpp in a Karaf/Spring project. > Here is the problem I observed when I stop/update my bundle SMPP endpoint > just closes the TCP connection to SMSC. > There is no unbind. This is a major problem for my project, because m

Timers stop firing after certain unpredictable interval

2011-02-03 Thread s2010in
Hello, There is a issue with using timers, I have tried both timer and quartz timer to process a spring bean method using Camel 2.4.0 and Camel 2.6.0 on tomcat 6 container using spring Observation is timer stops processing after certain unpredictable interval, the service method is not getting c

JPA Quandary

2011-02-03 Thread Mark Borner
Hi all: I'm in a bit of a pickle. I'm trying to use a JPA endpoint as a consumer. I first started by using the "consumer.namedQuery" option to use Hibernate HQL from the entity's @NamedQuery annotation. This worked well and the endpoint return the persistence entity. Now I've had to modify

camel-smpp - disconnect problem

2011-02-03 Thread Alex MadMind
Hello! I use camel-smpp in a Karaf/Spring project. Here is the problem I observed when I stop/update my bundle SMPP endpoint just closes the TCP connection to SMSC. There is no unbind. This is a major problem for my project, because mobile operator will not allow me to connect to SMSC without a

Re: After publish (OutOnly): Reply received for unknown correlationID

2011-02-03 Thread enalposi
Right, looks like this was a bug and fixed in 2.6. Cheers. -- View this message in context: http://camel.465427.n5.nabble.com/After-publish-OutOnly-Reply-received-for-unknown-correlationID-tp3368679p3370239.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel webconsole in Karaf

2011-02-03 Thread Jim Talbut
Does the camel-web allow management of multiple camel contexts (yet)? Without that I'm intrigued as to how it's being used with OSGi - a separate OSGi process for each camel context? Jim On 03/02/2011 09:28, Claus Ibsen wrote: On Wed, Feb 2, 2011 at 7:19 PM, Bengt Rodehav wrote: I mostly u

Re: Camel webconsole in Karaf

2011-02-03 Thread Bengt Rodehav
Thanks for both your answers, It sounds excellent to me. It's not a requirement to have the Camel web console as a plugin in the Karaf web console. Easy install via Karaf features is good enough for me. The shell plugin sounds very useful too. Will this be in Camel 2.7? /Bengt 2011/2/3 Claus Ib

Re: Filtering messages with simple regex

2011-02-03 Thread Xavier Coulon
Hello, That's done : https://issues.apache.org/jira/browse/CAMEL-3619 Regards, Xavier On Thu, Feb 3, 2011 at 3:09 PM, Claus Ibsen wrote: > On Thu, Feb 3, 2011 at 2:40 PM, Xavier Coulon wrote: > > That would be cool, indeed ;-) > > I did not find any JIRA issue about that parser improvement. >

Re: Filtering messages with simple regex

2011-02-03 Thread Claus Ibsen
On Thu, Feb 3, 2011 at 2:40 PM, Xavier Coulon wrote: > That would be cool, indeed ;-) > I did not find any JIRA issue about that parser improvement. > Should I open a new one for this subject ? > Yeah good idea. > Regards, > /Xavier > > On Thu, Feb 3, 2011 at 2:16 PM, Claus Ibsen wrote: > >> O

Re: Filtering messages with simple regex

2011-02-03 Thread Xavier Coulon
That would be cool, indeed ;-) I did not find any JIRA issue about that parser improvement. Should I open a new one for this subject ? Regards, /Xavier On Thu, Feb 3, 2011 at 2:16 PM, Claus Ibsen wrote: > On Thu, Feb 3, 2011 at 1:58 PM, Xavier Coulon wrote: > > Hello Claus, > > > > Thanks a lo

Re: Filtering messages with simple regex

2011-02-03 Thread Claus Ibsen
On Thu, Feb 3, 2011 at 1:58 PM, Xavier Coulon wrote: > Hello Claus, > > Thanks a lot for your quick answer ! > My mistake, indeed. I did not may enough attention to the syntax, I was > focusing on the regex itself... > Yeah the parser is a bit "simple". One day we will have a better indexer and A

Re: Filtering messages with simple regex

2011-02-03 Thread Xavier Coulon
Hello Claus, Thanks a lot for your quick answer ! My mistake, indeed. I did not may enough attention to the syntax, I was focusing on the regex itself... Best regards, /Xavier On Thu, Feb 3, 2011 at 1:44 PM, Claus Ibsen wrote: > Hi > > Pay attention to how to use operators as documented > http

Re: Filtering messages with simple regex

2011-02-03 Thread Claus Ibsen
Hi Pay attention to how to use operators as documented http://camel.apache.org/simple You need to have a single space before and after the operator. Do not use a dot. ${in.body}.regex '^D1.*$' Should be ${in.body} regex '^D1.*$' On Thu, Feb 3, 2011 at 1:30 PM, Xavier Coulon wrote: > Hello,

Filtering messages with simple regex

2011-02-03 Thread Xavier Coulon
Hello, I'm currently working with Camel (version 2.4.0-fuse-00-00, as provided in Fuse ESB 4.3) to perform data integration from a file. The initial input is a flat file which is splitted by line. At one point, I have the following route : ${in.body}.regex '^D1.*$' The goal of this route

Re: Memory leak in camel mail component

2011-02-03 Thread Claus Ibsen
On Wed, Feb 2, 2011 at 11:52 PM, Christian Müller wrote: > Claus is right. > I made a little test which shows that the number of endpoints grows until we > reach 1000 cached endpoints... > The endpoints may still be created in JMX and thus "eat up" memory. You can try running the test with JMX en

Re: Bug in camel-lucene component

2011-02-03 Thread Claus Ibsen
On Thu, Feb 3, 2011 at 11:28 AM, Peter Thygesen wrote: > When indexing using Lucene Component I get an exception: > > java.lang.ClassCastException: java.lang.Boolean cannot be cast to > java.lang.String > > I look like the index(Exchange exchange) (line 72) method on LuceneIndexer > iterates over

Bug in camel-lucene component

2011-02-03 Thread Peter Thygesen
When indexing using Lucene Component I get an exception: java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.lang.String I look like the index(Exchange exchange) (line 72) method on LuceneIndexer iterates over all the header key/value pairs and adds them to the index. In this p

Re: Camel webconsole in Karaf

2011-02-03 Thread Claus Ibsen
And a Camel shell plugin is in the works so you can manage your camel apps directly in the text based console. On Thu, Feb 3, 2011 at 10:36 AM, Jean-Baptiste Onofré wrote: > Agree with Claus, we can setup a Karaf Camel "profile" including a camel > extended features descriptor with the console f

Re: Camel webconsole in Karaf

2011-02-03 Thread Jean-Baptiste Onofré
Agree with Claus, we can setup a Karaf Camel "profile" including a camel extended features descriptor with the console for instance. Regards JB On 02/03/2011 10:28 AM, Claus Ibsen wrote: On Wed, Feb 2, 2011 at 7:19 PM, Bengt Rodehav wrote: I mostly use Karaf to deploy Camel routes. I also us

Re: Camel webconsole in Karaf

2011-02-03 Thread Claus Ibsen
On Wed, Feb 2, 2011 at 7:19 PM, Bengt Rodehav wrote: > I mostly use Karaf to deploy Camel routes. I also use Karaf's webconsole > quite a lot since it's a useful management tool. Karaf has an api for > extending the webconsole with "plugins" for different purposes. E g there is > an iPOJO plugin t