Re: Camel JMS component tied to Spring framework - bad news

2014-03-23 Thread sumeetkoshal
Hello All Can you please advise if there is anyway to use blueprint file in an osgi container to connect to third part JMS provider? If yes, can you please provide a sample? Regards Sumeet Email: sumeetkos...@hotmail.com -- View this message in context:

Re: Camel JMS component tied to Spring framework - bad news

2014-03-23 Thread Reji Mathews
Did you try modifying the Jboss Fuse example - cbr and try creating an activemq bean and send data through camel routes? On Sun, Mar 23, 2014 at 10:00 AM, sumeetkoshal sumeetkos...@hotmail.comwrote: Hello All Can you please advise if there is anyway to use blueprint file in an osgi container

Camel AWS-DDB scan/query

2014-03-23 Thread dev1
Hello, I'm using Camel AWS-DDB for the first time and have some issues getting data from DynamoDB. Could you, please, help me with this? I'm able to add some item, update by primary Hash/Range key (by defining Key object) but is it possible to do it by database indexes? I created some indexes on

Re: Camel CXF Proxy with WS-Security

2014-03-23 Thread chaij
it does seem to work by feeding the soap string to the cxf client. I fixed the namespace. I wonder if anything that needs to done to the camel message header. Is there an easier/right way to generate a request to a cxf component that accepts CXF_MESSAGE? -- View this message in context:

Re: Camel CXF Proxy with WS-Security

2014-03-23 Thread Reji Mathews
What do you exactly plan to do with the headers ? I wonder if you can really send headers to a CXF endpoint. Meanwhile , I have invoked the web service by generated proxies using the wsdl2java plugin. I haven't tried doing so by passing the soap string to cxf . On 23 Mar 2014 20:15, chaij

Sending a string response from a route...

2014-03-23 Thread npa
Is it possible to send a response out from a route flow. For Example, in this below route, I would always like to send out a string response say, hi whenever the request comes from the uri mentioned.. route from uri=jetty:http://0.0.0.0:/camelServlet/abc?; / /route if possible, how do I

RE: Sending a string response from a route...

2014-03-23 Thread Ravindra.Godbole
This is possible. route from uri=jetty:http://localhost:/camelServlet/abc?; / transform constantHi/constant /transform /route -Ravi