Re: Which Component of camel is used for subscriptions or polling?

2013-07-17 Thread cannykanna
Thank you Christopher. Will look into the doc. If there are any requires, i will let U know..!! Regards, Kannaiah -- View this message in context: http://camel.465427.n5.nabble.com/Which-Component-of-camel-is-used-for-subscriptions-or-polling-tp5735709p5735763.html Sent from the Camel - Users

Re: Camel resources URI into OSGi environment

2013-07-17 Thread Cristiano Costantini
Thank you Willem! I'm stick to the camel version in ServiceMix (until I have time to try just Camel + Karaf) which is using 2.10.4 now and moving to 2.10.6 I think in next revision, but it is good to know it is fixed! Regards, Cristiano 2013/7/17 Willem jiang willem.ji...@gmail.com Hi, I

Re: Testing a transacted route with CamelTestSupport

2013-07-17 Thread roman.stumm
When I write a unit-test or use a test-spring.xml, I can use my DummyTransactionManager like this: bean id=transactionManager class=de.viaboxx.spring.DummyTransactionManager/ or programmatically: class MyTest extends CamelTestSupport { @Override protected CamelContext createCamelContext()

Re: Turning off warning message in ObjectHelper

2013-07-17 Thread Claus Ibsen
Hi Thanks for reporting. I have logged a ticket to get this improved/fixed https://issues.apache.org/jira/browse/CAMEL-6553 On Sun, Jul 14, 2013 at 12:19 PM, kmonging kmong...@gmail.com wrote: While upgrading from camel 2.10.4 to camel 2.10.5, i noticed some additional warning messages in the

Hessian support (from/to endpoints)

2013-07-17 Thread flangel
Hi, what is the current state of hessian support. I like to use Hessian as a from endpoint, i.e. start the route by exposing an http endpoint and decoding the payload. Something along the line of from (hessian:\\uri). Currently, i am using an http endpoint and add a processor that decodes the

Re: How to recover corrupted HawtDB files

2013-07-17 Thread Claus Ibsen
What version of Camel and HawtDB are you using? To try to recover you would possible need to write some java code with the HawtDB API to load the corrupted file(s) and peak inside. Down the road we recommend using camel-leveldb instead of camel-hawtdb. This uses LevelDB as the store instead

Re: Hessian support (from/to endpoints)

2013-07-17 Thread Willem jiang
Hi, I don't think we have the camel-hessina component, and we love contribution, please share the idea with us :) I think you can take a look at the camel-xmlrpc[1] component I just have quick question of the methodName option. What's the prepose of methodName? If you need to specify the

Re: REST best practices

2013-07-17 Thread humayun0156
Yes, i've solved my problem. -- View this message in context: http://camel.465427.n5.nabble.com/REST-best-practices-tp5735585p5735785.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Run once a month Camel Bean

2013-07-17 Thread kikou1984
Ok thxs ! i found it :) -- View this message in context: http://camel.465427.n5.nabble.com/Run-once-a-month-Camel-Bean-tp5735712p5735800.html Sent from the Camel - Users mailing list archive at Nabble.com.

jsf and apache camel

2013-07-17 Thread lassesvestergaard
Hi all. I'm learning camel and jsf at the same time. What I want to do is to create a jsf web application where it is possible to create, edit and delete routes. This means that I need to have camel running in the background for ever. I want to put camel inside a war, and when the application is

@XmlElement overriding @JsonProperty

2013-07-17 Thread Craig Tataryn
I'm working on a little route for my blog feed, essentially I have a route that looks like this: from(rss:...) .marshal().rss() .split(xpath(//item)) .unmarshal(jaxb) //do stuff to my Article object .marshal().json(JsonLibrary.Jackson) My problem is, when I marshal my model object to json I

Groovy script synchronized issue with 2.10.x and 2.11.x prevents camel groovy script for High Concurrenc

2013-07-17 Thread apatel
In below code why method is synchronized? This prevents camel groovy script for High Concurrency. protected synchronized Object evaluateScript(Exchange exchange) { try { getScriptContext(); populateBindings(getEngine(), exchange);

camel-netty consumer with multicast address

2013-07-17 Thread samel
Hello all, I'm using Camel 2.11.0 and trying to use camel-netty to listen on a true multicast UDP address (224.0.0.0 through 239.255.255.255 - http://en.wikipedia.org/wiki/Multicast_address). I don't see any exception but I'm unable to get an messages through either. However, if I use

Message Processing Performance while splitting

2013-07-17 Thread Vic
I am processing big file - line by line with camel. The average amount of processed messages per second is 30k. When I do the same in java using BufferedReader - the average amount of processed messages per second is 500k. I am processing the same file. This is significant performance lost. Am I

Re: Error in camel-bindy

2013-07-17 Thread rameshkumar.m
Hi Jothi,You can do like this.*.unmarshal(new BindyCsvDataFormat(de.test.model.MyModel.class);* -- View this message in context: http://camel.465427.n5.nabble.com/Error-in-camel-bindy-tp5735580p5735825.html Sent from the Camel - Users mailing list archive at Nabble.com.

Replacing standalone client with generic one in cxf component

2013-07-17 Thread cannykanna
HI I have a wsdl with has many operations and input parameters defined for each. Now I wrote a standalone client with talks to my endpoint which exposes its services through webservices. This client talks with this endpoint and only one operation is defined in it. Now What I am looking is as

Re: Error in camel-bindy

2013-07-17 Thread Jothi
As I understand from Claus's message is that it is not possible to specify the class name to the BindyCsvDataFormat as this feature seems not to be available with the camel version that I'm using! -- View this message in context:

problem processing CSV to Database (camel-csv and camel-sql)

2013-07-17 Thread vs.souza
Hello guys, I built the following camel route using spring dsl: UserCSVToMySQL.xml http://camel.465427.n5.nabble.com/file/n5735821/UserCSVToMySQL.xml ?xml version=1.0 encoding=UTF-8? beans xmlns=http://www.springframework.org/schema/beans;

camel error with simple program with camel-core-2.11.1.jar

2013-07-17 Thread vinay
Hi All, I am new to camel, here is what I am trying and is giving me exception. $groovy -v Groovy Version: 2.1.3 JVM: 1.7.0_11 Vendor: Oracle Corporation OS: Linux $groovy CallCallista1.groovy give following exception... [main] INFO camelLogger - Exchange[ExchangePattern:InOut,

Re: Exceptions when aggregating messages

2013-07-17 Thread cristisor
Thanks for making things more clear. I read the documentation and I understand your point. -- View this message in context: http://camel.465427.n5.nabble.com/Exceptions-when-aggregating-messages-tp5735523p5735830.html Sent from the Camel - Users mailing list archive at Nabble.com.