using camel-dap in karaf / blueprint

2018-10-31 Thread Matteo Redaelli
was able to use camel-ldap in a project created with the archetype "camel-archetype-spring". Now I would like to run my route in karaf / blueprint but I get the error Invalid content was found starting with element 'constructor-arg'. One of '{"http://www.osgi.org/xmlns/blueprint/v1.0.0":descript

ActiveMQ & Camel and Karaf compatibility

2015-09-08 Thread Matteo Redaelli
the release of camel could be different from the one I have already installed... regards Matteo -- Matteo Redaelli http://www.redaelli.org/matteo/

Howto apache camel-rss & https.proxyHost & xml blueprint & karaf ?

2015-02-18 Thread Matteo Redaelli
mel.impl.ScheduledPollConsumer.doRun(ScheduledPollConsumer.java:187)[58:org.apache.camel -- Matteo Redaelli http://www.redaelli.org/matteo/

camel-hdfs 2.11.0 & karaf & blueprint

2013-06-18 Thread Matteo Redaelli
Hi I'm trying to use camel-hdfs with karaf & blueprint but I get the error below But I'm not sure if the problem is karaf/osgi/blueprint or my tcp port setting. According to https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20/src/hdfs/hdfs-default.xml which is the parameter

Re: camel-http: basic authentication and query parameter "username"

2010-02-25 Thread Matteo Redaelli
> uri="http://remoteserver.location/get_user_info.xml?username=matteo&password=matteosPassword"/> > > > > > Cheers, > Yogesh > > > Matteo Redaelli wrote: >> >> Hello >> >> With camel-http I'd

camel-http: basic authentication and query parameter "username"

2010-02-24 Thread Matteo Redaelli
Hello With camel-http I'd like to retreive an xml document from an url like http://remoteserver.location/get_user_info.xml?username=matteo BUT that url requires a basic authentication where do I have to set basic auth params (username and password) and where my query parameter "username"?? I

Re: camel velocity in jbi/servicemix4

2009-05-20 Thread Matteo Redaelli
camel-velocity (1.6.0.fuse) [ 161] [Active ] [ ] [ 60] camel-jms (1.6.0.fuse) [ 164] [Active ] [ ] [ 60] camel-juel (1.6.0.fuse) Freeman Fang wrote: > > Hi, > > Do you run "features/install camel-velocity" in smx console firstly, > ensure the camel-velo

Re: camel velocity in jbi/servicemix4

2009-05-20 Thread Matteo Redaelli
; Isn't this fixed in the latest SMX, haven't they upgraded the velocity >> there? >> >> >> On Tue, May 19, 2009 at 3:14 PM, Willem Jiang >> wrote: >>> Hi, >>> >>> This issue is caused by the velocity version is lower in ser

camel velocity in jbi/servicemix4

2009-05-19 Thread Matteo Redaelli
I'm trying to convert a camel project into a servicemix4/jbi project I started from the example "camel", then I added the library dependencies, .vm files, routers from my OLD camel project But when I run the routes in smx4 I get the error 13:03:38,299 | ERROR | enerContainer-98 | DeadLetterChann

Re: How long do the camel headers live in routes?

2009-05-07 Thread Matteo Redaelli
} where ${in.headers.req-project} is not a header but a property Thanks Matteo RomKal wrote: > > 2009/5/6 Matteo Redaelli : >> >> Thanks Claus for you answer, I'll look at the XSD for any future issue. >> >> But sorry for the s

Re: How long do the camel headers live in routes?

2009-05-06 Thread Matteo Redaelli
Thanks Claus for you answer, I'll look at the XSD for any future issue. But sorry for the silly question: now that I can set a property, how can I retrieve it in spring xml? do I have to set a header with the value of my new property to use it in a velocity template? Thanks in advance Matteo

Re: How long do the camel headers live in routes?

2009-05-04 Thread Matteo Redaelli
tp protocol are > different than response headers, so they simply have to be lost). > > Roman > > 2009/5/4 Matteo Redaelli : >> >> Ciao >> >> I would like to save a value at the beginnig of my route and reuse it at >> the >> end. What could I do?

How long do the camel headers live in routes?

2009-05-04 Thread Matteo Redaelli
Ciao I would like to save a value at the beginnig of my route and reuse it at the end. What could I do? Headers? How long do the camel headers live in routes? Is it possible to do something like from jms -> set header MYHEADER -> to velocity -> to jdbc -> split -> to velocity (reusing MYHEADE

Re: porting camel routers (camel-jdbc) to servicemix4.0

2009-04-26 Thread Matteo Redaelli
/html/service-registry.html > to find our more about this. > > Regards, > > Gert Vanthienen > > Open Source SOA: http://fusesource.com > Blog: http://gertvanthienen.blogspot.com/ > > > > 2009/4/26 Matteo Redaelli : >> >> Thanks for answer >&

Re: porting camel routers (camel-jdbc) to servicemix4.0

2009-04-26 Thread Matteo Redaelli
> Some of the .jars can be found here: > http://servicemix.apache.org/SMX4/bundles-repository.html > > > > > > On Thu, Apr 23, 2009 at 9:19 PM, Matteo Redaelli > wrote: >> >> ciao >> >> I'm trying to port a maven project

porting camel routers (camel-jdbc) to servicemix4.0

2009-04-23 Thread Matteo Redaelli
pringframework.jdbc.datasource.DriverManagerDataSource" What's worng? missing features/bundles? Regards Matteo Redaelli http://www.redaelli.org/matteo/ -- View this message in context: http://www.nabble.com/porting-camel-routers-%28camel-jdbc%29-to-servicemix4.0-tp23197888p23197888.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: camel-velocity: empty variable

2009-04-04 Thread Matteo Redaelli
Ok, now it works. Thank you for your help even if it was a issue related to velocity and not camel -- View this message in context: http://www.nabble.com/camel-velocity%3A-empty-variable-tp22864380p22887665.html Sent from the Camel - Users mailing list archive at Nabble.com.

camel-velocity: empty variable

2009-04-03 Thread Matteo Redaelli
ciao I use velocity to build a sql statement. " update mdl_user set idnumber='${in.body.cid}',icq='${in.body.usertype}' where upper(username)=upper('${in.body.userid}') " it works fine if ${in.body.cid} and ${in.body.usertype} are not null if one of them is null (for example ${

Re: howto expose a route via ws in a spring file without writing java code?

2009-01-31 Thread Matteo Redaelli
ters. > > you can find some examples here [1][2] > > [1]http://activemq.apache.org/camel/cxf.html > [2]http://activemq.apache.org/camel/cxf-example.html > > Willem > > Matteo Redaelli wrote: >> I read that with cxf it is possibile to expose webservices starting