RE: javax.net.ssl.SSLException: hostname in certificate didn't match

2015-11-03 Thread Siano, Stephan
Hi, However you should NEVER do this with a productive scenario as this setting will allow Man-in-the-middle attacks to your HTTPS communication. The root cause for the issue is that the hostname in the server certificate does not match the URL you are calling (from the error message I would

RE: Characters getting escaped when read from properties file

2015-11-03 Thread Gustav Sinder
Beautiful, that did the trick. Thanks! Thanks /Gustav -Original Message- From: Hans Orbaan [mailto:hans.orb...@docdata.eu] Sent: den 2 november 2015 15:52 To: users@camel.apache.org Subject: RE: Characters getting escaped when read from properties file Hi, Use: RAW(yourPassword) See:

Re: javax.net.ssl.SSLException: hostname in certificate didn't match

2015-11-03 Thread ramnar
Hi Use the http component to allow all hosts like the following httpcomponent.setX509HostnameVerifier(new AllowAllHostnameVerifier()); -- View this message in context: http://camel.465427.n5.nabble.com/javax-net-ssl-SSLException-hostname-in-certificate-didn-t-match-tp5754018p5773339.html Sent

How to improve throughput by grouping messages in a Transaction

2015-11-03 Thread deepak_a
All, I have a simple bridge between ActiveMQ and TibcoEMS. There are 2 routes. 1st Route moves messages into ActiveMQ Queue. (thisroute reads messages from Disk and publishes to ActiveMQ). 2nd Route consumes messages from ActiveMQ and publish to a Topic in TibcoEMS. For both the routes,

How to read XML Payload

2015-11-03 Thread calyan.bandi
Hi, Could someone please provide me the syntax for reading the XML payload with only the relevant tags. My input XML contains data as below: ... I need to split the input XML and do custom processing for each individual customer. The XML after splitting

Re: How to access payload from REST 404 reply in cxfrs?

2015-11-03 Thread calyan.bandi
Hi, I am not sure if its works, but you can try enabling the option streamCache on the route from which the web service is invoked. When using cxfrs component with trace/debug enabled the payload (stream) received from server is flushed once it is displayed - be it in logs or in your application.

Re: Can Camel VM be used in Karaf cross contexts in different bundles?

2015-11-03 Thread Chris Odom
Take a look at direct-vm http://camel.apache.org/direct-vm.html Thanks, *Chris Odom | Sr Consultant | Media Driver* 512.799.0270 | chris.o...@mediadriver.com 810 Hester's Crossing, Suite 165, Round Rock, TX 78681 On Tue, Nov 3, 2015 at 12:40 PM, bocamel wrote: > I am

Can Camel VM be used in Karaf cross contexts in different bundles?

2015-11-03 Thread bocamel
I am running a few bundles in Karaf, each has its own Camel context. I tried to use VM to communicate between them, i.e. one bundle (B1) is a producer to a VM endpoint, and another (B2) is the consumer of the VM endpoint. In the Camel route in B2, the route first tests a properties value in a .

Re: Camel 2.16 Spring 3.x support

2015-11-03 Thread Claus Ibsen
Yeah I think it should, but there may be some camel spring components that may require spring 4.x such as spring integration, spring boot and others. But for OSGi users on Karaf then its using spring 3.x for spring-dm to work. And we have an integration test that uses spring 3.2.x. On Tue, Nov

Rest with restlet works within eclipse but fails on command line

2015-11-03 Thread dermoritz
I created a little camel app that creates some rest endpoints. If i run the main method from within eclipse all is fine: [main] INFO org.apache.camel.impl.DefaultCamelContext - Route: route3 started and consuming from: Endpoint[http://localhost:8082/hello/(para)?restletMethods=GET] [main] INFO

Camel 2.16 Spring 3.x support

2015-11-03 Thread Lowell
Will came 2.16 run correctly using Spring 3.x? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-2-16-Spring-3-x-support-tp5773358.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Rest DSL Jetty multiple handlers causes java.lang.StackOverflowError

2015-11-03 Thread Karts
FYI as a workaround to this issue, I put the securityHandler in the restConfiguration and simply added an empty route with the other handler to my camel context: http://localhost:8080?handlers=jettyRequestLog"/> -- View this message in context:

Re: How to access payload from REST 404 reply in cxfrs?

2015-11-03 Thread Steve Huston
Thank you for the idea, Kalyan, but that didn’t work. Is it true that there’s no access to the payload one it’s touched? I can see the payload if no exception is thrown (e.g., a normal 200 response). Thanks, -Steve > On Nov 3, 2015, at 1:56 AM, calyan.bandi wrote: > >

Re: Simple Not Evaluating Complex Exression

2015-11-03 Thread ramnar
Thanks clas.It works -- View this message in context: http://camel.465427.n5.nabble.com/Simple-Not-Evaluating-Complex-Exression-tp5715408p5773365.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Simple Not Evaluating Complex Exression

2015-11-03 Thread ramnar
Hi I have an issue that iam not able to embed recipient list inside choice. I have scenario to call recipientlist1 if some condition is true and recipientlist2 if the condition is false.How to achieve this? -- View this message in context:

Re: How to read XML Payload

2015-11-03 Thread Henryk Konsek
Hi, Have you taken a look at the XPath splitter by any chance? Cheers! wt., 3.11.2015 o 12:31 użytkownik calyan.bandi napisał: > Hi, > > Could someone please provide me the syntax for reading the XML payload with > only the relevant tags. My input XML contains data as

Converting camel project getting error

2015-11-03 Thread SFZachary
We have an application written with camel v1.5 running on Tomcatyes this is very old. The app has a constant listener on a given port that will process requests with services. After receiving data from the service, it will return the data to the original sender...somehow (this is my question).