Re: Period character issue with camel-mongo.

2012-10-06 Thread Mark Doyle
Yeah, that works fine. I've created a test that reproduces the problem. I think it can only occur when an Object has a Map as a field. This is the only way we can get a period into something Mongo uses as a key (I'm guesstimating here) since fields names themselves obviously can't use a period. I

Re: Netty or Mina Async in the same socket

2012-10-06 Thread Claus Ibsen
On Sat, Oct 6, 2012 at 11:23 AM, Claus Ibsen wrote: > On Fri, Oct 5, 2012 at 7:55 PM, Flavio Magacho - M4U > wrote: >> Claus, Thank you. >> It works, I think that I missed the transform tag :). >> I Simply set the body. >> >> But I got some concurrency problems. >> I opened 2 connections. . . and

Re: CSV bindy - unmarshalling to multiple model object

2012-10-06 Thread Claus Ibsen
Hi There is some annotations you need to add to student so it knows that Student has an association to Marks. I think its the @Link annotation. Take a look at http://camel.apache.org/bindy On Fri, Oct 5, 2012 at 6:27 PM, Chandra Kalirasa wrote: > Hi Claus, > Thanks, its worked. However, in the

Re: Netty or Mina Async in the same socket

2012-10-06 Thread Claus Ibsen
On Fri, Oct 5, 2012 at 7:55 PM, Flavio Magacho - M4U wrote: > Claus, Thank you. > It works, I think that I missed the transform tag :). > I Simply set the body. > > But I got some concurrency problems. > I opened 2 connections. . . and it mixes data between them. > Ah yeah we should use an ordere

Re: JPA component and JTA

2012-10-06 Thread Babak Vahdat
Hi Setting up JTA is not that easy. Have you verified that Bitronix can properly "talk" with your JDBC driver? Is your Database driver already XA-capable, that's does it provide any javax.sql.XADataSource implementation? If not it will not participate in a global rollback even if Bitronix asks it

Re: Mail reading goes in loop

2012-10-06 Thread Claus Ibsen
Hi You would need to use the idempotent consumer EIP to filter out duplicates etc http://camel.apache.org/idempotent-consumer.html Otherwise you would need to either delete or mark the mails as seen on the mail server, so on next poll the previous mails is not consumed again. On Fri, Oct 5, 20