How can i re send the msg when i got the exception.

2013-06-14 Thread optixpro
Hi i have some question abt how to re send the message to endpoint. i received request from jms and to convert to JSON and then i have to send it to the Rest endpoint to check if the thing i looking for in the endpoint is not exist i have to throws exception and re check it again How can i do

Not able to send out SOAP request through camel

2013-06-14 Thread suyash.singh
Hi, I am facing an issue sending out a SOAP request through camel. Observations: 1) When I call invoke on the Dispatch stream, I get a sockettimeout error. 2) A simple wget to the same SOAP URL works on the same machine. any idea if there is a known issue with sending SOAP requests through

Regarding auto_delete_after

2013-06-14 Thread indrayani
Hi all, I getting following exception : javax.jms.InvalidDestinationException: Cannot publish to a deleted Destination: temp-queue when i searched for the solution, what i found was , there is a property auto_delete_after which we can set for the queue and by this way, the queue does not get

Re: Camel-Cxf Payload Mode - DefaultSEI not found

2013-06-14 Thread lmanchanda75
Hi aki, Thanks for the help, you are right, I don't want to use wsdl or service class. And the import thing worked. regds lalit -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Cxf-Payload-Mode-DefaultSEI-not-found-tp5734122p5734168.html Sent from the Camel - Users

Re: using when after Recipient List

2013-06-14 Thread SaroKrish
Thanks for the hint, i see endchoice.when.. thx -- View this message in context: http://camel.465427.n5.nabble.com/using-when-after-Recipient-List-tp5734138p5734157.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Not able to send out SOAP request through camel

2013-06-14 Thread Aki Yoshida
maybe you can describe your scenario in more detail. It's not clear what is configured. It sounds like you are just using cxf in camel instead of using the camel-cxf component, no? 2013/6/13 suyash.singh suyash.si...@gmail.com Hi, I am facing an issue sending out a SOAP request through

Re: Update database using openJpa in camel route

2013-06-14 Thread abhi
When I am trying to post my route it is automatically disappears from post. I can see it when I 'Preview Message', but disappears when I click on 'Post Message' Here is my route again. loop simple${in.header.employeeSummaryListCount}/simple

Update database using openJpa in camel route

2013-06-14 Thread abhi
HI.I am persisting data into SQL Server using openJPA in camel route. My route is as follows ${in.header.employeeSummaryListCount} *Problem:* */ Open JPA always tries to do INSERT onto

Re: SV: file zipping..

2013-06-14 Thread Ioan Eugen Stan
Hello, I wrote a custom processor for zipping (partly because I needed to archive more messages in one archive): It uses Guava 13 for some operations: public static class ZipProcessor implements Processor { @Override public void process(Exchange exchange) throws Exception {

Re: camel netty deadlock

2013-06-14 Thread Claus Ibsen
Hi Fixed by this ticket https://issues.apache.org/jira/browse/CAMEL-6442 On Tue, Jun 11, 2013 at 4:50 PM, kiranreddykasa kirankuma...@fss.co.in wrote: Hi I m getting the following exception when trying to use more than two netty endpoints in a single route. java.lang.IllegalStateException:

Re: Camel website: typo in cxfrs endpoint adress?

2013-06-14 Thread Claus Ibsen
Hi Thanks for reporting. I am fixing the doc page now. On Mon, Jun 10, 2013 at 12:02 PM, Wim Verreydt w...@anova.be wrote: Hi everyone, Last week I was trying to create an example with the cxfrs Simple Binding Style. On the webpage http://camel.apache.org/cxfrs.html the example code

Re: Problem with DefaultCamelContext EndpointRegistry

2013-06-14 Thread Claus Ibsen
Only singleton endpoints should be in the registry. Non singleton is prototype based and therefore a new instance is created when you call getEndpoint. On Wed, Jun 12, 2013 at 7:41 PM, Chris Wolf cwolf.a...@gmail.com wrote: Ok, have a partial answer - since my Endpoint is not a singleton, I

Re: jetty consumer: cannot set minThreads and maxThreads from uri.

2013-06-14 Thread Claus Ibsen
Hi You should set thread settings on the component level. On Mon, Jun 10, 2013 at 11:21 AM, kuro 962...@gmail.com wrote: I cannot set minThreads and maxThreads values when the endpoint is defined for the following uri . JettyHttpComponent (minThreads = null) ?xml version=1.0

Re: file zipping..

2013-06-14 Thread Claus Ibsen
Hi You need to add camel-zipfile to the classpath On Tue, Jun 11, 2013 at 6:24 AM, milan777 milan79pa...@gmail.com wrote: Hello everyone, i am getting error like this in below code please help me to resolve this error thanks in advance package Zip; import

Re: ConsumerTemplate issue

2013-06-14 Thread Claus Ibsen
Hi This is not a bug. ReceiveNoWait is for queing systems where messages is already available in a queue, eg SEDA / JMS etc. When you poll from a ftp/file then its polled on demand, and you need to give it some amble time to do this eg with the timeout option. On Thu, Jun 13, 2013 at 4:39 PM,

Re: Regarding auto_delete_after

2013-06-14 Thread Claus Ibsen
Hi Sounds like an ActiveMQ question if you use that broker? http://activemq.apache.org/delete-inactive-destinations.html On Thu, Jun 13, 2013 at 10:07 AM, indrayani ind.k...@gmail.com wrote: Hi all, I getting following exception : javax.jms.InvalidDestinationException: Cannot publish to a

Re: Not able to send out SOAP request through camel

2013-06-14 Thread Claus Ibsen
Hi Please take a moment to provide better and more detail what you are doing. We cannot help you if you dont take the effort yourself to explain what you want, and what you can't get to work etc. And frankly people is more inclined to not answer / help if they see that the person don't bother to

Re: ConsumerTemplate issue

2013-06-14 Thread thorbcn
Thanks Claus for the response! It would be nice if camel offered a way to perform a single fetch over its components infraestructure. I have faced scenarios where file attachments are so big to embed into the main incoming message. The common solution is the use of references of these files as

Re: GenericFile is not supported by this marshaller (activemq component with transferExchange=true)

2013-06-14 Thread Ioan Eugen Stan
Fixed by converting the body to an InputStream using: convertBodyTo type=java.io.InputStream/ . I expected the conversion to be done automatically.

Re: Camel-Cxf Payload Mode - DefaultSEI not found

2013-06-14 Thread lmanchanda75
Hi Aki, It works with your suggestion, though I don't fully understand how setting header here gets translated to HTTP header, and hence what all can I do like this? Regds Lalit -- View this message in context:

Re: Keep the same id between 2 exchanges

2013-06-14 Thread cyrillesaxo
Why can you persist that in a bean. using hashmapString,String -- View this message in context: http://camel.465427.n5.nabble.com/Keep-the-same-id-between-2-exchanges-tp5734220p5734225.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Keep the same id between 2 exchanges

2013-06-14 Thread Claus Ibsen
Hi You can implement your own uuid generator and then re-use id's if you want http://camel.apache.org/uuidgenerator.html Maybe your use-case its better to correlate by the file name or something? On Fri, Jun 14, 2013 at 2:16 PM, manu etrai...@bouyguestelecom.fr wrote: Hello, Is there is

Re: Camel Route to uri JNDI Lookup

2013-06-14 Thread Christian Müller
Can you spend more time in describing your problem. Best, Christian Sent from a mobile device Am 14.06.2013 01:05 schrieb Laxminarayana kreator@gmail.com: Can any one please respond to my post. This is very urgent. -- View this message in context: