Re: How to get the file name from an http post submitted to jetty endpoint ?

2015-09-02 Thread Andrew Block
Slavisa, Since the Jetty component exposes an endpoint, there is no implicit assumption that the request will be a file so there is no built in functionality for this purpose. You can still determine the name of the file being uploaded as it is passed along in the request in the content-disposi

Re: Problem upgrading to Camel 2.15.3 in Karaf 3.0.4

2015-09-02 Thread Raul Kripalani
Hey, This has been resolved already on the unreleased versions 2.16.0 and 2.15.4: https://issues.apache.org/jira/browse/CAMEL-9099. You may want to try a SNAPSHOT for the time being. Regards, *Raúl Kripalani* Apache Camel PMC Member & Committer | Enterprise Architect, Open Source Integration sp

Re: Stopping file reading via splitter on exception?

2015-09-02 Thread Raul Kripalani
Hey, You might want to look at the Splitter's stopOnException and shareUnitOfWork options [1]. [1] https://camel.apache.org/splitter.html Regards, *Raúl Kripalani* Apache Camel PMC Member & Committer | Enterprise Architect, Open Source Integration specialist http://about.me/raulkripalani | http

Re: PEM File for Authentication in route

2015-09-02 Thread Raul Kripalani
1. sslContextParameters is a component option, which means you need to configure it in the component, not in the endpoint. 2. I don't think the element supports nesting the element. Note how it is configured here [1]. [1] https://camel.apache.org/camel-configuration-utilities.html *Raú

Re: PEM File for Authentication in route

2015-09-02 Thread anish.somadevan
Am not able to make any progress beyond this. Can you please let me know if there is anything that am missing in my implementation? Thanks, Anish -- View this message in context: http://camel.465427.n5.nabble.com/PEM-File-for-Authentication-in-route-tp5771084p5771180.html Sent from the Camel -

Re: Camel extra jcifs for camel 2.15.x ?

2015-09-02 Thread Raul Kripalani
Hello, There has been no release of camel-extras partly due to the fact that Google Code is being switched off and the Camel community is pending a decision from ASF ComDev with regards to the upcoming home of Apache Extras projects. The thread is here [1] but there seems to be no conclusion or i

Re: what's happening to camel extra?

2015-09-02 Thread Raul Kripalani
Hey guys, Do we have an update on the ASF front about the Apache Extras migration? Users are asking for new releases of camel-extras components... I quickly went through the ComDev thread but found no conclusion. Maybe I overlooked an email in that thread. Things tend to get very chatty over ther

Re: REST (DSL) in ?

2015-09-02 Thread Raul Kripalani
Hi, Could you please open a JIRA [1] ticket for this improvement? [1] https://issues.apache.org/jira/browse/CAMEL Thanks, *Raúl Kripalani* Apache Camel PMC Member & Committer | Enterprise Architect, Open Source Integration specialist http://about.me/raulkripalani | http://www.linkedin.com/in/ra

Re: component couchdb

2015-09-02 Thread Raul Kripalani
Hey, Thanks for posting the problem and the solution! Which version of Karaf are you using? We may be able to fix the issue in the features descriptor. Thanks, Raúl. On 1 Sep 2015 20:41, "Hilderich" wrote: > Hello fellows, > > In my camel route (Apache Camel 2.15.2) I'd like to use the compon

Re: How to submit a ticket/bug report to Camel

2015-09-02 Thread Andrea Cosentino
Hi Michael, The link I've written on the latest email is wrong. The link is [1]. Sorry. Best,Andrea [1] https://issues.apache.org/jira/browse/CAMEL --Andrea Cosentino-Apache Camel CommitterEmail: ancosen1985@yahoo.comTwitter: @oscerd2Github: oscerd On Wedne

Re: How to submit a ticket/bug report to Camel

2015-09-02 Thread Andrea Cosentino
Hi Michael, After your login on Camel JIRA [1], you should see a "Create" blu button on the site top menu. Let us know if you have any other problem on creating a ticket. Thanks in advance for your contribution. Best,Andrea [1] https://issues.apache.org/jira/browse/CAMEL/  --  Andrea Cosentino   -

How to submit a ticket/bug report to Camel

2015-09-02 Thread michael.esmann
Hi, I am trying to submit a ticket/bug report to Camel. When I follow the link "Issue Tracker" on http://camel.apache.org/support.html then I am transferred to an Atlassian JIRA site for Camel. I have created an account on this site, but I am still having trouble finding out how to create a ticket

Re: component couchdb

2015-09-02 Thread Hilderich
I have solved the issue: It was an OSGi dependency resolution problem and it has nothing to do with camel directly. Karaf Feature camel-couchdb has a dependency to bundle lightcouch as you can see in the feature xml file: But lightcouch has a dependency to /org.apache.commons.logging/ with versi

Re: Camel Groovy DSL

2015-09-02 Thread Raul Kripalani
Hi Reji, Yeah, users tend to use Java DSL or the XML DSLs (Spring or Blueprint) more frequently. Consequently the number Groovy DSL-related topics will be lower, as well as the attention that the contributors and committers give to this DSL. I guess you have already come across the Groovy DSL page

Camel Groovy DSL

2015-09-02 Thread contactreji
Hi all Was wondering if we have any camel component documentations which can help in exploring more on camel groovy dsl and its usage. How do we declare the cxf endpoints, endpoint security configurations and use them in camel groovy dsl? Again, I see very less support for groovy dsl on the for

REST (DSL) in ?

2015-09-02 Thread Scott Stroud
Is the declaration only supported in the (in Spring DSL)? And not the RouteContext? If not, is there any plan to support in the ? I believe its a very common approach to define routes into (domain) specific files and then import them into the camel-context via Spring, then use a to inclu

How to get the file name from an http post submitted to jetty endpoint ?

2015-09-02 Thread s.marjanovic
Hello, I'm creating a route that is supposed the accept an HTTP POST with a file and, among other things, archive that file. My route is as shown below: from("jetty:http://{{host}}?httpMethodRestrict=POST";).routeId("MyRoute") .to("file:"+"{{localArchiveFile}}") .unmarshal()

Re: JSON to XML Conversion

2015-09-02 Thread Raul Kripalani
I'm not suggesting that you use JAXB. I just wanted you to try defining the JSON to XML data format nested inside the unmarshal. On 2 Sep 2015 02:06, "anish.somadevan" wrote: > Am actually trying to convert a JSON response from an API to XML, and i > don't > think it can be done using JAXB. Pleas