Dynamic web service calling using camel route end point

2013-04-15 Thread srikanthsettivari
i need to configure the route end point using WSDL file . I don't know the service classes . I don't want to keep the service classes in my classpath . Just i know the wsdl file. Please help me. Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Dynamic-web-service-callin

Type Converters in Camel

2013-04-26 Thread srikanthsettivari
i have written converter class @Converter public class OutboundMessageConverter { @Converter public static com.gehcit.cp.ws.interop.OutboundMessage convertToInterfaceEngineOutboundmessage(com.gehcit.cp.cem.outboundmessage.OutboundMessage outboundMessage) { com.gehci

Re: Type Converters in Camel

2013-04-26 Thread srikanthsettivari
Thanks -- View this message in context: http://camel.465427.n5.nabble.com/Type-Converters-in-Camel-tp5731607p5731652.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel transactions

2013-05-03 Thread srikanthsettivari
Hi, My route is like this from (dbtq:bd) .to(direct:myendpoint) from(direct:myendpoint) .to(jms:activemq) Here from (dbtq:bd) .to(direct:myendpoint) dbtq:bd is always polling the records from database and putting in to the direct endpoint, after getting the records from data base we are updating

Transactions in camel

2013-05-20 Thread srikanthsettivari
Hi my route is like this from("activemq:queue:partners") .transacted() .process(new Processor() { public void process(Exchange exchange) throws Excep

Transaction Management in Camel

2013-06-03 Thread srikanthsettivari
HI, My route like this from(jms:queue:firstqueue) .transacted() .processor(new MyProcessor()) .to("jms:queue:out") ---> in Myprocessor calss i am creating exchange message, and creating some dealy like thread.sleep() >at the time of Thread sleeping i am stopping the server. Then again i start

Unable to stop the route

2013-12-15 Thread srikanthsettivari
Hi, I have configured the route, like from("jms:queue:queue1") .transacted() .process(new Processmyprocess()) .to("jms:queue:queue2"); At the time of processing the messages from queue1 to end queue2, if w

Re: Unable to stop the route

2013-12-16 Thread srikanthsettivari
Hi, We are using the concurrent consumers to process route the route looks like this. from("jms:queue:queue1 ? concurrentConsumers = 5 & maxConcurrentConsumers = 25 & maxMessagesPerTask=25") .transacted() .process(new Processmyprocess())

Re: Unable to stop the route

2013-12-16 Thread srikanthsettivari
We have givent the shut down strategy for the route like this: camelContext.getShutdownStrategy().setTimeout(5); camelContext.getShutdownStrategy().setTimeUnit(TimeUnit.SECONDS); camelContext.getShutdownStrategy().setShutdownNowOnTimeout(true); It is not stopping with in 5 seconds, it is taking d