Unsubscribing the list

2014-05-16 Thread Steffen Larsen
First of all, sorry for this mail, but Ive tried many times to unsubscribe to this list but without any luck. Even though it says that it knows my username / email (zoo...@gmail.com), I can not get my pass and thereby unsubscribe on the admin for the list. Could an admin please unsubscribe me?.

Re: Calling a REST URL dynamically

2014-02-28 Thread Steffen Larsen
Ahhh perfect! that’s exactly what I wanted. Thanks Henryk! :-) Now I just need to find out how to use my restlet component inside a container and make it work. Right now I have something like: from("restlet:http://0.0.0.0:8080/api/hello/{world}?restletMethod=post";).process(new MyBean()) From

Calling a REST URL dynamically

2014-02-28 Thread Steffen Larsen
Hi Guys, I need to call different URLs all depending on a earlier route. So based on a earlier header I need to update the URL that needs to be called. I have tried: .setHeader(Exchange.ACCEPT_CONTENT_TYPE, constant("application/json")) .setHeader(Exchange.HTTP_METHOD, constant("GET")) .setHeade

Re: Handling objects in the rabbitmq component

2014-02-25 Thread Steffen Larsen
Hi Guys, Does nobody have any ideas how to parsing an object into rabbitmq component? -Cheers /Steffen On 21 Feb 2014, at 13:15, Steffen Larsen wrote: > Hi There, > > I have a rabbitmq component that should consume an java POJO object. It works > quite fine outside of camel,

Handling objects in the rabbitmq component

2014-02-21 Thread Steffen Larsen
Hi There, I have a rabbitmq component that should consume an java POJO object. It works quite fine outside of camel, where I can handle the message as an object (MyObject, done in the spring-rabbitmq lib). When I send my object down to camel it seems that I can’t convert it into an object? Rou