OSGi + ActiveMQBlob Message with Camel does not pick up the custom type converter

2010-10-10 Thread Madhav Bhargava
Hi All, I have a simple camel route where a ActiveMQBlobMessage is created and put into a JMS endpoint and then passed to a file endpoint to be written to a file. I have the following spring-camel configuration: ftp://user:passw...@localhost/archive/"; /> http://camel.a

Re: How to convert Camel message to soap message

2010-10-10 Thread Hossein
What version of camel are you using? Soap dataformat can be used with camel 2.3+ --- Hossein -- View this message in context: http://camel.465427.n5.nabble.com/How-to-convert-Camel-message-to-soap-message-tp3205888p3206979.html Sent from the Camel - Users mailing list archive at Nabble.com.

JMS Selector

2010-10-10 Thread Hossein
Hello, Is jms selector option working with camel 2.2? Trying to set into jms header an id (e.g. exchange.getOut().setHeader("clientid", "someid") that could be used later to retrieve data (e.g. from("activemq:queue:somequeue?selector=clientid='someid'").to(someOtherQueue). However, I'm having d

Re: configure failover for weblogic jms queue using jndi template

2010-10-10 Thread Willem.Jiang
Cool, please post your solution to the mailing list if you find a way to do this job. Willem vvchoy wrote: > > Hi, > Thanks for your suggestion. I also find out that weblogic client (both > thin and full jar) does not seem to support the single server recovery > scenario (though it supports th

Re: How to convert Camel message to soap message

2010-10-10 Thread Willem.Jiang
If the camel message body is an inputStream, you can use the javax.xml.soap.MessageFactory to create a SOAPMessage instance for you. Willem -- View this message in context: http://camel.465427.n5.nabble.com/How-to-convert-Camel-message-to-soap-message-tp3205888p3206334.html Sent from the Camel

Re: How to handle the SOAP Header

2010-10-10 Thread Willem.Jiang
Hi, If you already have a soap message which has the right soap header information , you can just use the camel-http[1] component to invoke the external service. If you want to do other WS* message handling work, or create the SOAP message yourself, you can leverage camel-cxf component. [1]http: