Mina is either not maintained anymore, or it's not maintained very often.
Have you considered using the netty4 component? There are lots of tuning
options that you can use for it.
On Fri, Nov 11, 2016 at 1:43 PM, pong2016 wrote:
> We are using JBoss Fuse with Camel/Mina2 to handle TCP traffic f
We are using JBoss Fuse with Camel/Mina2 to handle TCP traffic from a
Northbound interface that sends XML. This is then processed via a Camel
route(Active MQ) towards Southbound in another format.
While load testing, we created 5000 individual TCP sessions (in ~3 secs.)
and for each of these sessi
Hello,
I'm using ZooKeeperRoutePolicy to select the leader and on non-leader
members I get of course the exception, which I'd like to suppress and just
log something like "skipping exchange on non-leader node"
Now, I know I could use onException clause but it would potentially catch
all others Il
I agree with Jonas original comment.
Since camel-swagger-java allows for explicitly setting a hostname it should
have precedence over the hostname taken from the servlet context
(regardless if it in turn is taken from 'X-Forwarded-Host' or 'Host').
@Jonas: I would suggest that you log a Jira with
Hmm... I took a look at the code but looks confusing to me.
At first, direct:route2 and direct:route3 invocation doesn't produce
ExchangeCompleted event, as DirectProducer doesn't create new Exchange but
invoke consumer Processor directly.
However when from()'s predicate is evaluated in matches
Thanks guys, setting the content type to text/plain did the trick.
--
View this message in context:
http://camel.465427.n5.nabble.com/camel-mail-Body-ends-up-as-attachment-instead-of-e-mail-body-in-multipart-mail-tp5789939p5790037.html
Sent from the Camel - Users mailing list archive at Nabble.
Because from 2.17 to 2.18 we upgrade Kafka to 0.10.x
https://github.com/apache/camel/blob/camel-2.18.x/components/camel-kafka/src/main/java/org/apache/camel/component/kafka/KafkaConfiguration.java
We are now using only the Java API for both producer and consumer.
--
Andrea Cosentino
---
Using latest camel-parent / camel-kafka
org.apache.camel
camel-parent
2.18.0
1st problem - Need to explicitly add kafka_2.11 dependency as in camel-kafka
scope was changed to test.
2nd problem - Even if kafka_2.11 added, camel route fails to star
Hi John,
just to make sure, I use now a very clean war file, that has basically only
CDI component and one camel routeBuilder class deployed.
package com.kona.camel.routes;
import javax.enterprise.context.ApplicationScoped;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.cd