Re: Camel and Guice - without JNDI and Spring

2016-05-11 Thread jkiddo
Hmmm ... Okay ... I've started to figure out some stuff. Should anyone be interested in following my findings, they can be found @ https://github.com/jkiddo/camel-herder -- View this message in context: http://camel.465427.n5.nabble.com/Camel-and-Guice-without-JNDI-and-Spring-tp5782401p5782429.

Re: How to run camel-cdi projects ?

2016-05-11 Thread nicolasduminil
Hi Antonin, Many thanks for your reply and sorry fior the delay. I'll investigate these options and I'll post here my results. Kind regards, Nicolas DUMINIL -- View this message in context: http://camel.465427.n5.nabble.com/How-to-run-camel-cdi-projects-tp5781727p5782431.html Sent from the C

Re: Camel and Guice - without JNDI and Spring

2016-05-11 Thread Andrea Cosentino
Hi Jens, Sorry, missed your first email. I think we don't have examples of this kind. I think it's interesting. Let us know your progress :-) Thanks. -- Andrea Cosentino -- Apache Camel PMC Member Apache Karaf Committer Apache Servicemix Committer Email: ancos

Re: routing from rest to soap

2016-05-11 Thread MKhalil
Hi Dears, I have problem like this, but it's related to URL itself as URL of backend web service has "?" so the camel can't resolve this rout. below is the exception and URL of web service is bolde style. org.apache.camel.RuntimeCamelException: org.apache.camel.FailedToCreateRouteExcept

Re: routing from rest to soap

2016-05-11 Thread miri eyni
thanks for your answer my code is : JaxbDataFormat jaxb = new JaxbDataFormat(false); jaxb.setSchemaLocation("C:\\Users\\m\\Desktop\\wsdl\\p.xsd"); getContext().getProperties().put("CamelJacksonEnableTypeConverter", "true"); // allow Jackson json to convert to pojo types als

Re: Netty4 HTTP - java.lang.NoSuchMethodError: io.netty.util.internal.AppendableCharSequence.charAtUnsafe(I)C

2016-05-11 Thread yogu13
Looks like some issue with dependencies of Netty. Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/Netty4-HTTP-java-lang-NoSuchMethodError-io-netty-util-internal-AppendableCharSequence-charAtUnsafe-IC-tp5782365p5782369.html Sent from the Camel - Users mailing

NullPointerException on ver 2.17 when using saxon-pe 9.5.1.3

2016-05-11 Thread ajozwik
Hi I think it's bug, when I changed back to ver 2.16 it work fine 11:05:59,190 [var/SIS/promote-filter/source/] INFO INFO Exchange[Id: ID-sldv-spd-sdldr5-dev-sis-tv-39553-1462788162677-1-742, ExchangePattern: InOnly, Properties: {/var/SIS/promote-filter/source/2016-05-09

Re: routing from rest to soap

2016-05-11 Thread miri eyni
did yo add org.apache.camel camel-spring-ws -- View this message in context: http://camel.465427.n5.nabble.com/routing-from-rest-to-soap-tp5782352p5782368.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel2.17: No bean could be found in the registry

2016-05-11 Thread bprager
Yes, I was missing this. How do I do that in a Camel Spring Boot environment? The context is already provided by the Spring Boot Camel auto-configuration. Thank you! -- View this message in context: http://camel.465427.n5.nabble.com/Camel2-17-No-bean-could-be-found-in-the-registry-tp5782311p57

Re: Camel2.17: No bean could be found in the registry

2016-05-11 Thread bprager
Yogesh. Yes, Consul is similar to ZooKeeper, but has some more advanced features in terms of health-check and multi-datacenter support. If you look at the test cases in my GitHub ( https://github.com/bprager/camel-consul ) you will see, I have Camel alread

Re: Camel2.17: No bean could be found in the registry

2016-05-11 Thread yogu13
okay.. let me check and get back to you.. regards, -Yogesh On Monday 9 May 2016, bprager [via Camel] < ml-node+s465427n5782387...@n5.nabble.com> wrote: > Yogesh. > Yes, Consul is similar to ZooKeeper, but has some more advanced features > in terms of health-check and multi-datacenter support. >

Re: Camel2.17: No bean could be found in the registry

2016-05-11 Thread bprager
Eventually I would like to use Consul as a remote registry. ( https://github.com/bprager/camel-consul ) With the example I provided, I am just trying to get a Spring Boot environment ready to any third party registry. -- View this message in context:

Re: Camel2.17: No bean could be found in the registry

2016-05-11 Thread yogu13
Hi, Based on configurations available for spring you can try specifying your custom registry as a bean , just make sure it has only one bean of type Registry. By default spring ends up using ApplicationContextRe

Re: Camel failover loadbalancer empty processor list

2016-05-11 Thread mnl
ping? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-failover-loadbalancer-empty-processor-list-tp5782152p5782395.html Sent from the Camel - Users mailing list archive at Nabble.com.

RedisConsumer doesn't support blocking popup in camel-spring-redis component

2016-05-11 Thread ??????
Dear team, We're using apache camel to integrate our "Elevator IoT" project, we use redis lists as our message queue, and use BRPOP to fetch message. We can push message use RedisProducer since it support most command of redis, but the RedisConsumer on support the command SUBSCRIBE and PSUBSC

Re: routing from rest to soap

2016-05-11 Thread MKhalil
Sure, added it -- View this message in context: http://camel.465427.n5.nabble.com/routing-from-rest-to-soap-tp5782352p5782405.html Sent from the Camel - Users mailing list archive at Nabble.com.

re:

2016-05-11 Thread Ali Saeed
I have a project request...

Apache Server runs console command faster than terminal

2016-05-11 Thread abhi.k.singh
Hi, I am using apache server to host my python script. In that script i am doing a grep to get the name of a file containing a specific string. When i am running this script on the terminal it takes approx 10 seconds. In the python script i am executing the same command, but it takes only 1 second

Re: Netty4 HTTP - java.lang.NoSuchMethodError: io.netty.util.internal.AppendableCharSequence.charAtUnsafe(I)C

2016-05-11 Thread Charles Moulliard
Yes. Problem resolved after installing the same version of this jar file ( netty-codec-http) as packaged with Camel Netty4 HTTP 2.15.x On Mon, May 9, 2016 at 12:39 PM, yogu13 wrote: > Looks like some issue with dependencies of Netty. > > Regards, > -Yogesh > > > > -- > View this message in conte

ClassNotFoundException ObjectFactory

2016-05-11 Thread Rakesh
Hello, I am using the latest camel 2.17.1 version and used 2.17.0 version as well. The stack trace appear only with enabled TRACE. I am using camel file endpoint. This class ObjectFactory doesn't exists in the package. Can you please check / confirm is this normal behaviour? thanks Rakesh 05:2

RE: Camel ftp component : JSCH-0.1.44 Vs OpenSSH_6.6.1 issue: Leads to error : com.jcraft.jsch.JSchException: Session.connect: java.io.IOException: End of IO Stream Read

2016-05-11 Thread sharma_arun_se
It works ! I changed from Fuse to Apache camel only solution. I used latest Apache Camel ftp component version 2.17.0 and JSCH version: 0.1.53. It works perfectly fine. - Regards, Arun Kumar (sharma_arun_se) Expert SOA (Fuse ESB, Camel, ActiveMQ, OSGi) and RESTful Solution Architect,

Camel, Blueprint and camel:run

2016-05-11 Thread jraine
I try to execute a route camel create with Blueprint in Eclipse with the camel:run. I used the archetype camel-archetype-blueprint, I make a easy blueprint In eclipse when I launch the command maven mvn camel:run, the route start, its perfect. But when I edit the pom.xml and I add a dependency

Re: Camel, Blueprint and camel:run

2016-05-11 Thread Grzegorz Grzybek
Hi jraine looks like you're using very very very very old version of camel. "Caused by: java.lang.IncompatibleClassChangeError: org/apache/aries/proxy/impl/interfaces/InterfaceProxyGenerator" means you're using JDK8 or later with asm version 3 - you should use asm 5. we've upgraded camel-test-bl

Re: How to run camel-cdi projects ?

2016-05-11 Thread nicolasduminil
Hi Antonin, I have investigated the direction you've suggested and I think that the (1) is fine. Then I found a lot of example like this: CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer(); cdiContainer.boot(); ContextControl contextControl = cdiContainer.getContextContr

Update camel-smpp dependency on jsmpp to 2.2.1

2016-05-11 Thread Bari Rid
jsmpp version 2.2.0 contains a correction concerning responding correctly to failed DeliverSM as can be seen here: https://github.com/opentelecoms-org/jsmpp/commit/575eec44ebf51077870d45385392e30a29c6dfe3 The change is made particularly in the file SMPPSessionBoundRX.java when handling PDUString

Re: .choice(), .when() not working as expected in the camel route

2016-05-11 Thread souciance
Why don't you try with simple("${body} ==blabla") instead of isequalto ? Den 11 maj 2016 5:44 em skrev "Kriti [via Camel]" < ml-node+s465427n5782452...@n5.nabble.com>: Hi, I have a camel route like this - public void configure() { - - from('mina2

RE: Trouble sending a ByteBuffer to a mock

2016-05-11 Thread Steve Huston
Closing the loop on this... the issue ended up being that when the Exchange got to the end of the route and went back to the 'from' (which was a cxfrs REST point) that piece complained about the ByteBuffer. In my case the solution ended up being adding another processor after the "end" to set up

Re: How to run camel-cdi projects ?

2016-05-11 Thread Antonin Stefanutti
Hi Nicolas, > On 11 May 2016, at 17:02, nicolasduminil > wrote: > > Hi Antonin, > > I have investigated the direction you've suggested and I think that the (1) > is fine. Then I found a lot of example like this: > >CdiContainer cdiContainer = CdiContainerLoader.getCdiContainer(); >cdi