Re: under the hood architecture of camel-jetty and camel-http4

2013-07-08 Thread Willem jiang
Hi Please see my comments inline. -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com (http://jnn.javaeye.c

Re: Enricher - coping strategy

2013-07-08 Thread Willem jiang
The enricher is just a common EIP implementation, we don't care much about the implementation of message. I just went though the code, it could be more easy if you can override the default copy method of the heavy message. I think we can enhance the enrich DSL by providing the plugin parameter t

Re: Enriching SOAP messages

2013-07-08 Thread Willem jiang
FYI, this question is just answer here[1] [1]https://community.jboss.org/message/826938 -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English)

Re: MailComponent/MailConsumer misses Mails

2013-07-08 Thread Christian Mueller
I just updated Camel 2.11.1-SNAPSHOT to javax.mail/mail from 1.4.5 to 1.4.7 without any problems. Could you please try Camel 2.11.0 with javax.mail/mail 1.4.7? I don't think it's a Camel issue, but we have to investigate a bit more... Best, Christian -- View this message in context: http://ca

Enriching SOAP messages

2013-07-08 Thread anirban.gupta4
Hi, I have a requirement to enrich a SOAP message using the contents of another SOAP message using Camel. Previously I have enriched a XML by unmarshaling the XML using proper JAXB annotated class, performing the enrichment and then marshaling it to XML, but I'm not sure how to do it for SOAP mess

under the hood architecture of camel-jetty and camel-http4

2013-07-08 Thread geert
Hello all, I'm working on the concept for a camel route and I have some high level questions about the internal architecture of camel and especially camel-jetty and camel-http4. I need an extremely fast processing time and for this I want to control the connection pool, enforce keep-alive connecti

Enricher - coping strategy

2013-07-08 Thread solimo
Hello! After few route implementations which use enricher I've found it quite inconvenient to copy whole exchange. The concept is quite brilliant, but could anyone explain why, instead of implementing some ExchangeCreateStrategt (like AggregationStrategy for aggregation), the whole exchange is bei

Re: File upload

2013-07-08 Thread Sergey Beryozkin
On 08/07/13 13:57, Sergey Beryozkin wrote: Hi, The method expects a form payload but the log shows the content type is 'application/x-www-form-urlencoded'... sorry, I meant to say the method expects a multipart/form-data payload... sergey Please consider asking on CXF users list when a route

Re: File upload

2013-07-08 Thread Sergey Beryozkin
Hi, The method expects a form payload but the log shows the content type is 'application/x-www-form-urlencoded'... Please consider asking on CXF users list when a route does not work due to a CXF specific exception... Thanks, Sergey On 08/07/13 13:30, jamalissimo wrote: Hello Sergey, thank

Re: File upload

2013-07-08 Thread jamalissimo
Hello Sergey, thanks for the tip. I am still experimenting and so far I can see from the log, that I am receiving the request, but I am not able create a condition for choice definition. This is the REST part: @POST @Consumes(MediaType.MULTIPART_FORM_DATA) @Path("/upload

Re: Camel Blueprint Test Support

2013-07-08 Thread Claus Ibsen
The Fuse Camel 2.9.x also has the camel-test-blueprint out of the box. So you can downgrade to 2.9.x and use that. Maybe it works better with the 2.8 On Mon, Jul 8, 2013 at 12:54 PM, Jothi wrote: > I did give it a try and eventually I ran into a ClassNotFoundException. It > complained that it was

Re: Camel Blueprint Test Support

2013-07-08 Thread Jothi
I did give it a try and eventually I ran into a ClassNotFoundException. It complained that it was not able to find the ModelCamelContext. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Blueprint-Test-Support-tp5735198p5735281.html Sent from the Camel - Users mailing l

Re: Multiple NoClassDefFoundError

2013-07-08 Thread axelf
We tried to restart the implementation of Camel with Maven, and it works fine now. I think some dependencies were missing. -- View this message in context: http://camel.465427.n5.nabble.com/Multiple-NoClassDefFoundError-tp5735277p5735280.html Sent from the Camel - Users mailing list archive at

Re: camel-mina response handler

2013-07-08 Thread Claus Ibsen
Yeah we love contributions. Feel free to log a JIRA and attach a patch http://camel.apache.org/contributing.html On Fri, Jul 5, 2013 at 10:41 PM, Thomas Termin wrote: > We are using currently camel-mina for sending udp data. The problem is that > the default response handler log just all exceptio

Re: camel-netty udp connection less support

2013-07-08 Thread Claus Ibsen
Hi Yeah we love contributions. Feel free to log a JIRA and attach a patch http://camel.apache.org/contributing.html On Fri, Jul 5, 2013 at 10:32 PM, Thomas Termin wrote: > I would like to extend the camel-netty component for connection less udp > support. Therefore I would introduce a new conf

Multiple NoClassDefFoundError

2013-07-08 Thread axelf
Hi. I've just added Camel to an existing project implementing ActiveMQ and JMX services. We want to use Camel and monitoring it as well as ActiveMQ is already monitored (we have our own web console). The Camel context is started in a init-context servlet implementing Init() method. I added all jar

Re: Camel Blueprint Test Support

2013-07-08 Thread Christian Müller
Give it a try and make sure you do not have mixed Camel version dependencies except for camel-blueprint (make sure you use camel-core 2.8.x and not 2.10.x because this is the version you will deploy). Best, Christian - Software Integration Specialist Apache Camel committer: https

Re: Camel Development in eclipse

2013-07-08 Thread James Strachan
On 8 July 2013 08:12, vinay wrote: > I did installed plugin from http://repo.fusesource.com/ide/ > but fuse perspective is not available. Please use these downloads; they are the latest: http://www.jboss.org/products/fuse BTW there isn't a Fuse perspective. Try creating a new Fuse project (v

AW: Camel Development in eclipse

2013-07-08 Thread jhm
There is a FAQ-entry * http://camel.apache.org/faq.html * http://camel.apache.org/is-there-an-ide.html I added a note with these informations ... https://cwiki.apache.org/confluence/display/CAMEL/Is+there+an+IDE Jan > -Ursprüngliche Nachricht- > Von: James Strachan [mailto:james.strac.

Re: Camel Development in eclipse

2013-07-08 Thread vinay
I did installed plugin from http://repo.fusesource.com/ide/ but fuse perspective is not available. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Development-in-eclipse-tp5735191p5735260.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Development in eclipse

2013-07-08 Thread James Strachan
Here's the latest download link: http://www.jboss.org/products/fuse or grab the source yourself from github https://github.com/fusesource/fuseide On 8 July 2013 07:49, vinay wrote: > Thanks Jyothi, > > is following update site correct? > > http://repo.fusesource.com/ide/ > > cheers, > Vinay > >

Re: Camel Development in eclipse

2013-07-08 Thread Christian Müller
You can build it by your own from https://github.com/fusesource/fuseide Best, Christian - Software Integration Specialist Apache Camel committer: https://camel.apache.org/team V.P. Apache Camel: https://www.apache.org/foundation/ Apache Member: https://www.apache.org/foundation/m

Re: Camel Development in eclipse

2013-07-08 Thread vinay
Thanks Jyothi, is following update site correct? http://repo.fusesource.com/ide/ cheers, Vinay -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Development-in-eclipse-tp5735191p5735259.html Sent from the Camel - Users mailing list archive at Nabble.com.