way to implement usecase

2012-04-02 Thread Samruben
Hi I am new to camel. I have a use case, I need some suggestions and best way to implement it. I have some data in database which has some header values as jxpath expression. I need to validate it using filter. eg: jxpath //books/value600 But in camel, the filter always comes with camel

Re: camel http 'adapter'

2012-04-02 Thread Claus Ibsen
Hi You can also use camel-restlet which can act as a REST server http://camel.apache.org/restlet On Sun, Apr 1, 2012 at 7:29 PM, Marco Mistroni mmistr...@gmail.com wrote: Hello Christian  yes, i want to run camel app as standalone. i'll investigate the camel-jetty component and get back to

Camel-ejb, JBoss

2012-04-02 Thread topicfun
Hi! I have two ear deployed under JBoss5 one for business logic and one for communication protocol via Camel. I try to call a EJB (ear2) from a camel context (ear1) which is located in different classloader repository. In this way the bean can't be looked up. I have checked the bean under

Re: scalable bus with multiple Camel instances

2012-04-02 Thread unludo
I see that Camel mainly makes sense with a broker like ActiveMQ, as a core for a scalable/decoupled system. Thanks for helping me understanding this! -- View this message in context: http://camel.465427.n5.nabble.com/scalable-bus-with-multiple-Camel-instances-tp5606593p5612599.html Sent from

Re: scalable bus with multiple Camel instances

2012-04-02 Thread Christian Müller
It's not Camel mainly makes sense with a broker like ActiveMQ. There are many other easons why you should use Camel also without a message broker. I want only let you know 1) what the benefit of a message broker is and 2) what customers says is sometimes not what they really want... ;-) Best,

Can Camel routes fail independently inside a single CamelContext?

2012-04-02 Thread Eugeniu
1. Can Camel routes fail independently inside a single CamelContext? 2. If yes, does the Context restart them, or the route should be restarted manually somehow? -- View this message in context:

Re: Can Camel routes fail independently inside a single CamelContext?

2012-04-02 Thread Hadrian Zbarcea
No, not really. It's not the routes that fail, but processing individual messages that may fail. In that case the default error handling mechanism kicks in, but you can have your own [1] (which is usually the case, as error handling is application specific). Cheers, Hadrian [1]

jars required

2012-04-02 Thread Samruben
Hi I am new user to camel. My question may be simple,but i couldnot able to find the respective jars (name of tthe jars) for the following classes. 1. interface Predicate 2. Expression languages implementation jars --SQL (SQLExpression) -- OGNL (OGNLExpression)

class implementation jars

2012-04-02 Thread Samruben
Hi I have seen an interface Predicate in the jar camel-core 2.9.0. I need to know whether the implementation of this interfaces are done in the jxpath,sql,spel,ognl expression language. Could you guide me where the exact jar and classes where the interface is implemented in those EL? Thank

Mule or Apache camel...

2012-04-02 Thread Omar Atia
Dears , What is the difference between Apache camel and mule ! I have gone through integrations with apache camel but didn't have the chance to do some in mule , may you please advise if there is continuous development using mule like the open source we are seeing using apache camel. Another

Re: camel http 'adapter'

2012-04-02 Thread Marco Mistroni
oh, thanks Claus, i didn't even know such a component existed... w/kindest regards marco On Mon, Apr 2, 2012 at 7:32 AM, Claus Ibsen claus.ib...@gmail.com wrote: Hi You can also use camel-restlet which can act as a REST server http://camel.apache.org/restlet On Sun, Apr 1, 2012 at 7:29

Re: jars required

2012-04-02 Thread Reuben Garrett
i believe Predicate is in camel-core, and OGNLExpression is in camel-ognl, SQLExpression is in camel-josql, and SpelExpression is in camel-spring. I'm not sure about JXPath, but in general you can look at the online javadocs [1] and see component/artifact name in the URL. the wiki [1] will also

Re: jars required

2012-04-02 Thread Samruben
Hi I have seen an interface Predicate in the jar camel-core 2.9.0. it has this method public interface Predicate { public abstract boolean matches(Exchange exchange); } -- http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/Predicate.html the

how to get and set the soap header.

2012-04-02 Thread yaseen
I need to get the soap header from the response , There is a value in the header i need to take the value and need to use the value in the project. -- View this message in context: http://camel.465427.n5.nabble.com/how-to-get-and-set-the-soap-header-tp5613966p5613966.html Sent from the Camel -

Re: how to get and set the soap header.

2012-04-02 Thread Christian Müller
Is there a question/problem? Best, Christian Sent from a mobile device Am 03.04.2012 02:05 schrieb yaseen jyas...@chn.aithent.com: I need to get the soap header from the response , There is a value in the header i need to take the value and need to use the value in the project. -- View