Looks like I've managed to fix this, with some help from this post on
StackOverflow:
https://stackoverflow.com/questions/33397359/how-to-configure-jackson-objectmapper-for-camel-in-spring-boot
What I did is to create a new ObjectMapper instance and disabled the
SerializationFeature.FAIL_ON_EMPTY_
The route is taking properties from a POJO and building up a message
to use to send an email. I add the from, to & subject headers in the
route which are just string values. The message body is created using
a Velocity template which extracts some values from the POJO.
I included some tracers in
Anyone able to help with this please?
On Thu, Dec 21, 2017 at 6:03 PM, Charles Berger
wrote:
> Hi,
>
> I have the following route in my application which sends an email
> based on a template filled out with data from the SingleImageModel
> class:
>
> from
etVisibility(PropertyAccessor.FIELD, Visibility.ANY); as
explained here: http://www.baeldung.com/jackson-jsonmappingexception),
but how can I do that in my Camel configuration?
Is that the right approach, or is there another way to solve this problem?
Thanks,
Charles.
> You should be able to convert your ImageCollection into List
> by simply doing something like:
>
> from("activemq:requestQueue")
> .convertBodyTo(ImageCollection.class)
> .setBody(simple("${body.images}"))
> .log("${body}")
> .split(body())
> .log("
Or is there a way in the route that I can call the method
ImageCollection.getImages() method to pass into the split?
Thanks,
Charles.
instances
of the SingleImageModel class from the list inside ImageCollection,
but I can't work out what that should do.
Instead, what is happening is that the bean registered for the
downloadImageQueue is receiving an instance of ImageCollection when it
expects an instance of SingleImageModel and the type conversion in
that bean is failing.
Any guidance much appreciated.
Thanks,
Charles.
context: http://camel.465427.n5.nabble.
> com/Error-in-bindy-documentation-tp5788166.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
t; before the "get", then the "get" works. The way the command is in the
> >> > listing of the previous email resulst in the "put" working. So, both
> >> rest
> >> > paths are valid, but something with the Camel DSL (or the way that I
>
timesheetId
Regards,
Charles
On Mon, Jul 11, 2016 at 10:48 PM, Steve973 wrote:
> I have my rest dsl route like this:
>
> restConfiguration().component("undertow").host("localhost").port("8181");
> rest("/timesheet")
> .get("/
Problem resolved using
context.stopRoute("direct-idempotent");
context.startRoute("direct-idempotent");
I suspect that how the thread is paused/resume when using startCamel() &
stopCamelContext() is different from using stop/start route
On Fri, May 27, 2016 at 12:
ntext().getRoute("direct-idempotent").getConsumer().start();
template.requestBodyAndHeader("333,18-05-2016,Claus,Ibsen,incident
camel-333,this is a report incident for camel-333,cib...@gmail.com,+111 10
20 300","CamelRecord",1);
mockResult.assertIsSatisfied();
}
Regards,
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
-
> View this message in context:
> http://camel.465427.n5.nabble.com/Netty4-HTTP-java-lang-NoSuchMethodError-io-netty-util-internal-AppendableCharSequence-charAtUnsafe-IC-tp5782365p5782369.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliar
DK 6 & 8 ?
Regards,
Charles
his message in context:
> http://camel.465427.n5.nabble.com/Netty4-HTTP-JAAS-issue-tp5782122p5782257.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ogin.config" is declared with the location of the jaas
file :
System.setProperty("java.security.auth.login.config",
"src/test/resources/org/jboss/fuse/security/camel/tls/myjaas.config");
So normally, I shouldn't get this error message
What could be the is
context:
> http://camel.465427.n5.nabble.com/Multiple-camel-producers-instantiated-tp5781152.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
>> >> > Hello,
> >> >> >> >
> >> >> >> > Do you know any other way to do this?
> >> >> >> > Can the component be updated to include this?
> >> >> >> > Can I use a custom fopFactory for this?
&
t;&secretKey=RAW({{aws.secretkey}})");
>
>
>
> Regards,
> CGSK
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-bindy-not-working-in-Spring-boot-tp5780995p5781017.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
t;
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-bindy-not-working-in-Spring-boot-tp5780995p5781012.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
type
AbtrstractHTTPDestination
java.lang.ClassCastException:
org.apache.cxf.transport.http.AbstractHTTPDestination$1 cannot be cast to
java.io.ByteArrayInputStream
Is there a trick to resolve that ?
Regards,
Charles
Element(name = "secureXML")
@XmlAccessorType(XmlAccessType.FIELD)
public class XMLSecurityDataFormat extends DataFormatDefinition implements
NamespaceAware {
@XmlTransient
private Map namespaces;
Is there a reason why it is not defined with the annotation @Attribute ?
Regards,
--
// use the rest DSL to define the rest services
rest("/users/")
.get("{id}/basic")
.route()
.log(">> Thread name : ${threadName}")
will continue to use 16 T
from("netty4-http:http://localhost:{{port}}/echo";)
.log(">> Thread name : ${threadName}")
.transform(body().append(body())).to("mock:result");
}
Only 2 threads are created now
Regards,
Charles
Group INFO [route1] - >>
Thread name : Camel (camel-1) thread #2 - NettyEventExecutorGroup
Do I have to use another param to set the ThreadPool used by Netty4-http ?
Regards,
--
Charles Moulliard
Apache Committer & PMC / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ror-code
Why the idempotentConsumer doesn't filter exception error-code ?
Regards,
--
Char
tp://in.linkedin.com/pub/reji-mathews/31/9a2/40a
> Twitter - reji_mathews
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/COBOL-data-parse-in-Camel-tp5772356.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Mon, Sep 14, 2015 at 5:46 PM, Henryk Konsek wrote:
> Hi Charles,
>
> You have to enable the CORS on the route DSL configuration, not only on the
> routes level. For example here is the REST+Netty combination for Camel
> 2.15.1 that works properly with the AngularJS REST client:
log/article/
-->
HTTP/1.1 200 OK
Accept: */*
Accept-Encoding: gzip, deflate
Access-Control-Allow-Headers: Origin, Accept, X-Requested-With,
Content-Type, Access-Control-Request-Method, Access-Control-Request-Headers
Access-Control-Allow-Methods: GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS,
CONNECT, PATCH
Access-Control-Allow-Origin: *
Access-Control-Max-Age: 3600
Allow: GET, HEAD, POST, PUT, DELETE, OPTIONS
Regards,
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
n the requested resource.
Origin 'http://localhost:8000' is therefore not allowed access. The
response had HTTP status code 404.
Is there a workaround ?
Regards,
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ClassResolver.
>
> Can you please tell me how to do that incase of wildfly ? Do i've to add
> additional dependencies.
>
> thanks
> Ravi.
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Bindy-running-within-a-WAR-tp5765035p57657
se.
>
> Thanks.
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Bindy-Date-Unmarshall-Issue-tp5762960.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
servlet into an existing Web
Container)
Regards,
Charles
On Tue, Feb 24, 2015 at 2:44 AM, Milli wrote:
> By the way, I forgot to mention that we are trying to avoid using "Spring"
> as a dependency.
>
> Thanks,
>
> On Mon, Feb 23, 2015 at 5:40 PM, Milli
> wrote:
&g
gt; Thanks,
> Jason
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/State-of-the-camel-cdi-component-tp5760578.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
//www.w3.org/2001/XMLSchema";>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Can you please help me how to router for this?
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-tp5759735.html
> Sent from the Camel
t:
> http://camel.465427.n5.nabble.com/Camel-Hive-tp5759189p5759315.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
.convertBodyTo(String.class)
> .end();
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Hive-tp5759189p5759284.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
mel.465427.n5.nabble.com/How-to-remove-camel-framework-text-in-my-soap-fault-tp5759195p5759209.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
VER);
> throw sf;
>
>Frank
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/How-to-remove-camel-framework-text-in-my-soap-fault-tp5759195.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ection to fetch data from Hive table.
>
> Please any one help for the same.
>
> I am not able to fetch the information.
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Hive-tp5759189.html
> Sent from the Camel - Users mailing li
:
> http://camel.465427.n5.nabble.com/Not-all-processors-are-listed-in-JMX-preventing-detailed-route-statistics-profiling-tp5757634p5758143.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
("COMIC :
>> ${body[id]}---${body[title]}${body[prices][0][price]} ");*
>>
>> After the log line I want to put those 2 values into a new Bean fields.
>>
>> Is there any built-in transformation process inside camel that is capable
>> of create new P
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Issue-with-adding-wsse-security-header-in-Apache-Camel-Route-tp5758106.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
> View this message in context:
> http://camel.465427.n5.nabble.com/Change-property-in-unit-test-tp5758017p5758098.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
Stream caching is described here :
http://camel.apache.org/stream-caching.html
On Mon, Oct 27, 2014 at 12:41 PM, Jonathan Vila Lopez <
jonathan.v...@gmail.com> wrote:
> Hi Charles
>
> You are right. thank you a lot.
>
> Is that explained in any documentation page
lic/comics?dateDescriptor=nextWeek&ts=987&apikey=97f295907072a970c5df30d73d1f3816&hash=abfa1c1d42a73a5eab042242335d805d
"/>
On Mon, Oct 27, 2014 at 11:47 AM, Ch
You syntax is not correct as unmarshalling of jackson will return
On Mon, Oct 27, 2014 at 10:56 AM, Jonathan Vila Lopez <
jonathan.v...@gmail.com> wrote:
> Hi Charles
>
> Oki, thank you.
>
> But, how can I retrieve 3 attributes from the JSON and print out them ? In
> the
uot;) to poll a HTTP
Server.
Regards,
On Mon, Oct 27, 2014 at 9:48 AM, Jonathan Vila Lopez <
jonathan.v...@gmail.com> wrote:
> Hello Charles
>
> But, with that code I used I successfully get the response and
> successfully unmarshals it.. in fact, in my code my problem was
Hi Jonathan,
To call the HTTP Server exposing the REST service the HTTP producer must be
used and not the HTTP Consumer component of Camel (
http://camel.apache.org/http.html). This syntax is not correct
(from("http://";) while this one is correct
from("direct:marvel").to("
http://gateway.marvel.
;
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Not-all-processors-are-listed-in-JMX-preventing-detailed-route-statistics-profiling-tp5757634p5757959.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
>
> > >> Tarballs:
> > >>
> >
> https://repository.apache.org/content/repositories/orgapachecamel-1017/org/apache/camel/apache-camel/2.12.5/
> > >>
> > >> Tag:
> > >>
> >
> https://git-wip-us.apache.org/
t;
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-JMS-message-topic-handling-tp5757853.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
xtokenize is only available since Apache Camel 2.14 as described in the
documentation.
On Tue, Oct 21, 2014 at 12:06 PM, contactreji wrote:
> Hi Charles
>
> I also found something called xtokenize on
> http://camel.apache.org/splitter.html documentation page.
>
> Can you sugge
gards,
On Tue, Oct 21, 2014 at 11:15 AM, contactreji wrote:
> Hi Charles
>
>
> Thanks for you input.
>
> I have change to token. But i get errors as
>
> *Caused by: org.xml.sax.SAXParseException; lineNumber: 50; columnNumber:
> 24;
> cvc-complex-type.3.2.2: Attrib
.apache.org/schema/spring":xpath,
> "http://camel.apache.org/schema/spring":xquery}' is expected.
> at
>
> com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:198)*
>
>
> Do i need to add any namespace anywhere?
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Splitter-EIP-tp5757844p5757845.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
You could also use breakpoint within the method shouldRegister(Object
service, Route route) of DefaultManagementLifecycleStrategy class to check
why we return false
On Tue, Oct 21, 2014 at 8:24 AM, Charles Moulliard wrote:
> Hi Blacktie,
>
> Can you enable this camel jmx
are-listed-in-JMX-preventing-detailed-route-statistics-profiling-tp5757634p5757820.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
Hi Franz,
This is also what I have suggested two in a previous thread (expand the
xml-security dataformat)
Regards,
On Fri, Oct 17, 2014 at 4:19 PM, Franz Paul Forsthofer <
emc2...@googlemail.com> wrote:
> HI Charles and Gonzalo,
>
> I do not think it is necessary to develop a
gt;
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/ProducerTemplate-without-using-Spring-tp5739099p5757633.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
l.465427.n5.nabble.com/Camel-Endpoint-Consumer-startup-tp5757635.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
hread #10 -
> ErrorHandlerRedeliveryTask] DEBUG route2 a debugging message here from
> route2
>
>
> Any thoughts?
>
>
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/onException-and-doTry-tp5757602.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
gt; --
> View this message in context:
> http://camel.465427.n5.nabble.com/Question-about-the-message-group-tp5757580.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
nnect from " +
> configuration.getHost() + ". This exception is ignored.", e);
> }
> });
> }
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-MQTT-Endpoint-reconnect-on-transport-failure-tp5757564.html
> Sent from the Camel -
An Apache project cannot include code developed under GPLv3 or LGPL license
due to rights restrictions (more info here :
http://www.apache.org/licenses/GPL-compatibility.html).
On Tue, Oct 14, 2014 at 3:12 PM, Gonzalo Vasquez wrote:
> Dear Charles,
>
> Can you please elaborate on suc
; Gonzalo Vásquez Sáez
> Gerente Investigación y Desarrollo (R&D)
> Altiuz Soluciones Tecnológicas de Negocios Ltda.
> Av. Nueva Tajamar 555 Of. 802, Las Condes - CP 7550099
> +56 2 335 2461
> gvasq...@altiuz.cl
> http://www.altiuz.cl
> http://www.altiuzreports.com
>
>
gt; Altiuz Soluciones Tecnológicas de Negocios Ltda.
> Av. Nueva Tajamar 555 Of. 802, Las Condes - CP 7550099
> +56 2 335 2461
> gvasq...@altiuz.cl
> http://www.altiuz.cl
> http://www.altiuzreports.com
>
>
>
> El 14-10-2014, a las 9:50, Charles Moulliard escribió:
>
>
could also request
to Santuario project that they support XADES-BES algorythm
On Tue, Oct 14, 2014 at 2:43 PM, Charles Moulliard wrote:
> Excellent news. Could you please raise a ticket here to keep track of your
> development https://issues.apache.org/jira/browse/CAMEL ?
>
> On
Excellent news. Could you please raise a ticket here to keep track of your
development https://issues.apache.org/jira/browse/CAMEL ?
On Tue, Oct 14, 2014 at 2:33 PM, Gonzalo Vasquez wrote:
> Hi Charles,
>
> Sounds good, I'm actually already using the base64 dataformat, so usi
Soluciones Tecnológicas de Negocios Ltda.
> Av. Nueva Tajamar 555 Of. 802, Las Condes - CP 7550099
> +56 2 335 2461
> gvasq...@altiuz.cl
> http://www.altiuz.cl
> http://www.altiuzreports.com
>
>
>
> El 14-10-2014, a las 4:02, Charles Moulliard escribió:
>
> > H
vestigación y Desarrollo (R&D)
> Altiuz Soluciones Tecnológicas de Negocios Ltda.
> Av. Nueva Tajamar 555 Of. 802, Las Condes - CP 7550099
> +56 2 335 2461
> gvasq...@altiuz.cl
> http://www.altiuz.cl
> http://www.altiuzreports.com
>
>
>
>
--
Charles Moulliard
+Quickstart
)
Regards,
Charles
On Mon, Oct 13, 2014 at 9:44 PM, camelcoder07 wrote:
> I am needing some help understanding how I can change a camel router from
> using API key authentication to OAuth which is required by the web service.
> I currently have the below code working to the we
ng only DSL ?
>
> Regards,
> Antoine.
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Http-bridgeEndpoint-to-proxy-a-distant-server-tp5757448p5757474.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
A37E97E62E92986FE7481.9DFE950A9AAAD24F9A]],
> Content-Type=text/xml},
>
> BodyType:org.apache.camel.converter.stream.CachedOutputStream.WrappedInputStream,
> Body:[Body is instance of java.io.InputStream]
> 2014-10-09 15:16:09,898 [bio-8080-exec-3] INFO Tracer
> - ID-L82680-58528-14
Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ing.xsd
>http://camel.apache.org/schema/spring
> http://camel.apache.org/schema/spring/camel-http.xsd";>
>
> http://camel.apache.org/schema/spring";>
>
>
>
> POST
>
> uri="https://api.host.com/api/v3.1/link/query/place/?apiKey=1234"/>
>
>
>
>
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-Spring-HTTP-Consumer-using-remote-Rest-web-service-tp5757395.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
lpful if someone can share the piece of code.
>
> Cheers
> Reji
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Basic-Authentication-Camel-Jetty-tp5757392.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Class(AbstractBeanFactory.java:1254)[106:org.springframework.beans:3.1.3.RELEASE]
> ... 36 more*
>
> what can be done here?
>
> Cheers
> Reji
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-JAAS-Fuse-tp5757390.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
Or is there any other clean way to do it.
>
> Thanks!
> Aryan
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Handling-error-per-endpoint-tp5757191.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
-
is appreciated.
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/problem-with-exchange-getProperty-in-multi-threaded-environment-tp5757354.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliar
gt;
> Its called 3 times because
> - before routing
> - after route
> - done (either onComplete or onFailure)
>
> On Thu, Oct 2, 2014 at 9:17 AM, Charles Moulliard
> wrote:
> > Hi Max,
> >
> > Is it called 3 times because an exception has been throw in the route ?
haven't fully isolated the issue yet. But I seem to have a case where
> > UnitOfWork was executed before the route consumer while with Camel 2.14,
> it
> > is not executed after the route consumer has started.
> >
> > Any thoughts?
> >
> > Regards,
> > Max.
> >
> >
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
, scheduler.cron=0
> 0/1 * * * ? *, scheduler.job.name=unqualifiedTransactionBidsJob}]
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/camel-quartz2-2-14-0-as-a-polling-consumer-for-a-JMS-Queue-tp5757292.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
ore?If so, can someone share their experience and the
> configurations/code?Thanks, Gordon
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Camel-websocket-over-STOMP-tp5757258.html
> Sent from the Camel - Users mailing list archive at Nabble.c
ng correct?
> If yes, what would be the best way to support an application with multiple
> camel contexts?
>
> Obviously one way is to create a swagger Servlet for each camel context. Is
> there a cleaner way?
>
>
> Regards,
> Max.
>
--
Charles Moulliard
Apache C
ing?
>
>
> http://camel.apache.org/schema/spring";>
>
> Replace body
>
>
>
>
>
> ${body}
>
>
>
>
> Thanks,
and get an empty collection in return). Something like
> @CsvRecord(allowEmptyFiles = true).
>
> Thanks in advance for any feedback.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
: "has-children"
>
> Thanks in advance.
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/JacksonDataFormat-disable-JAXB-annotations-tp5756891.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
> Regards,
>
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Route-Design-Suggetion-tp5756825p5756831.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
.otherwise()
>
> .to("bean:AirResponse?method=sendNotification")
> .endChoice()
> .endChoice()
> .to("jpa:VasResponse?persistenceUnit=VasServicePU")
> .end();
>
> }
>
> Regards,
> Imran
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Route-Design-Suggetion-tp5756825.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
,
public boolean removeTypeConverter(Class toType, Class fromType) {
return getDelegate().removeTypeConverter(toType, fromType);
}
Regards,
Charles
On Thu, Sep 18, 2014 at 11:07 AM, Svend-Ole Nielsen <
svend-ole.niel...@vehco.com> wrote:
> Hi Charles
>
> Sorry for no
ror stating that a
> convert could not be found. If I then restart the route everything works
> until it looses the converter again.
>
> Anyone with an idea as to why it "looses" the converter ??
>
> I'm running Camel inside Karaf if that is an issue..
>
> Reg
tions are thrown when the data element
> is missing?
>
> Thanks!
> Michael
>
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Error-with-transform-tp5756657.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
r, please notify us immediately by
> e-mail and delete the message and any attachments from your system.
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
Hi Tom,
As camel-2.14 is ready for the vote, you could perhaps make a test with the
Bindy modification to confirm ?
https://repository.apache.org/content/repositories/orgapachecamel-1012/org/apache/camel/apache-camel/2.14.0/
Regards,
On Wed, Aug 27, 2014 at 7:56 AM, Charles Moulliard wrote
nted in this message or attachments are those of the author and do not
> necessarily represent those of the Company. All e-mails and attachments
> sent and received are subject to monitoring, reading, and archival by the
> Company"
>
> =
ge in context:
> http://camel.465427.n5.nabble.com/Route-Camel-Pass-variables-in-a-SQL-query-tp477181p5756205.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
; > > Make sure you've set
> > > "-Djavax.net.ssl.trustStore=
> > > -Djavax.net.ssl.trustStorePassword="
> > > correctly if you're using a self-signed server certificate or your own
> CA
> > > for issuing the server certificate. If
> View this message in context:
> > http://camel.465427.n5.nabble.com/Using-Timer-in-Camel-tp5755951.html
> > Sent from the Camel - Users mailing list archive at Nabble.com.
> >
>
>
>
> --
> Matt Sicker
>
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
at
> org.fusesource.hawtdispatch.internal.pool.SimpleThread.run(SimpleThread.java:77)
>
>
>
>
>
> I tried the way on a plain Java App by using ActiveMQSslConnectionFactory
> to connect to it, it works to read message from/write message to Activemq.
>
>
> I used Activemq 5.10 with ssl transport enabled as Server side.
>
>
> I appreciate if anybody can give me some hints.
>
>
> Thanks in advance.
--
Charles Moulliard
Apache Committer / Architect @RedHat
Twitter : @cmoulliard | Blog : http://cmoulliard.github.io
you get an empty
message, check that you get this property -->) to trigger your second camel
route.
On Tue, Sep 2, 2014 at 8:35 AM, Charles Moulliard wrote:
> Hi Monish,
>
> What is your use case ? If you use Apache Camel to transfert the files
> from a directory to a FTP Server,
1 - 100 of 856 matches
Mail list logo