Re: Camel build on windows 7

2013-06-12 Thread santonel
It now work like a charms! Thanks a lot Cheers -- View this message in context: http://camel.465427.n5.nabble.com/Camel-build-on-windows-7-tp5734132p5734159.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel Route "to uri" JNDI Lookup

2013-06-12 Thread Laxminarayana
I'm facing some problems with Camel Route "to uri" jndi lookup. Please find below link which gives all the details http://kreator.52879.x6.nabble.com/Camel-Route-to-uri-JNDI-Lookup-td2.html -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Route-to-uri-JNDI-Lookup-tp573

Re: using when after Recipient List

2013-06-12 Thread Christian Müller
If I remember right, there is an endWhen(). Can you try it? Best, Christian Sent from a mobile device Am 12.06.2013 11:42 schrieb "SaroKrish" : > Am trying to do something like the below, > > from("direct:Reg").choice(). > when(header("event").contains("sign")).multicast().to("direct:b", > "dire

Re: No transaction active for JpaEndpoint

2013-06-12 Thread Christian Müller
The "transacted()" should come directly after the "from()". May be this helps... Best, Christian Sent from a mobile device Am 12.06.2013 15:37 schrieb "Pew, Benjamin L" : > Well, I've managed to debug into the JpaComponent, and discovered that the > real issue is that when it tries to call Entit

Re: Producer Template Failure on Glassfish AIX

2013-06-12 Thread Christian Müller
May be you can reopen the issue by IBM? It looks like it's not resolved... Best, Christian Sent from a mobile device Am 12.06.2013 19:53 schrieb "peter.berkman" : > yep, that is one of the posts I was looking at too. Not really any > expectations. I wanted to see if someone had the same probl

Re: Producer Template Failure on Glassfish AIX

2013-06-12 Thread peter.berkman
yep, that is one of the posts I was looking at too. Not really any expectations. I wanted to see if someone had the same problem and was hoping there was a solution. -- View this message in context: http://camel.465427.n5.nabble.com/Producer-Template-Failure-on-Glassfish-AIX-tp5734027p573415

scaling camel netty

2013-06-12 Thread kiranreddykasa
Hi Could anyone help me in scaling camel netty, Here are my routes First from("netty:tcp://localhost:7000?textline=true") .bean(LoggingProcessor.class) .to("netty:tcp://localhost:7001?textline=true") .bean(LoggingProcessor.class) .to("netty:tcp://localhost:7002?textline=true") .bean(LoggingProc

Re: Problem with DefaultCamelContext EndpointRegistry

2013-06-12 Thread Chris Wolf
Ok, have a partial answer - since my Endpoint is not a singleton, I see that DefaultCamelContext.getEndpointKey(String uri, Endpoint endpoint) appends that "%3A2" - i.e. ":2" - which appears to be an instance qualifier. The trouble is, DefaultEndpoint.getEndpointUri() will always return the URI *w

Re: No transaction active for JpaEndpoint

2013-06-12 Thread Pew, Benjamin L
Well, I've managed to debug into the JpaComponent, and discovered that the real issue is that when it tries to call EntityManager.lock it gets an exception because my entity isn't versioned. This exception is swallowed and then Camel tries to call flush on the EntityManager, but there's nothing don

Problem with DefaultCamelContext EndpointRegistry

2013-06-12 Thread Chris Wolf
I am trying to develop a new component, but it needs to be able to have it's endpoint be registered in the CamelContext endpoint registry. Whenever the runtime tries to call DefaultCamelContext.getEndpoint(String uri) it returns null, even though, in the debugger, I can expand DefaultCamelContext

Re: Multiple cxf:serviceBeans in cxf:rsServer

2013-06-12 Thread Tarun Kumar
Sergey, Thanks for the reply. from endpoint is totally different for both the routes (i reverified it). Based on resourceClass, it should be able to distinguish. Not sure what am missing here? On Wed, Jun 12, 2013 at 8:51 PM, Sergey Beryozkin wrote: > On 12/06/13 15:15, Tarun Kumar wrote: > >> I

No transaction active for JpaEndpoint

2013-06-12 Thread Pew, Benjamin L
I am new to Camel. I have spent the better part of two days searching through the web and in the Camel documentation for something to help me, but with no luck. Camel 2.11 Application runs under JBoss AS 7.1 We do not use Spring CamelContext is setup using Camel CDI I am trying to setup a JPA con

using when after Recipient List

2013-06-12 Thread SaroKrish
Am trying to do something like the below, from("direct:Reg").choice(). when(header("event").contains("sign")).multicast().to("direct:b", "direct:c") .when(header("event").contains("login")).multicast().to("direct:b", "direct:c"); but I can't able to use .when (second part after the first when(). c

Re: Multiple cxf:serviceBeans in cxf:rsServer

2013-06-12 Thread Sergey Beryozkin
On 12/06/13 15:15, Tarun Kumar wrote: I have mutiple serviceBeans in cxf:rsServer component. http://localhost:8080/services/employees> Here ClassA and ClassB are implementation of service interfaces. I have one route class for each service route. for first service: from("cxfrs:/

Re: Camel build on windows 7

2013-06-12 Thread Christian Müller
Please update your JDK to a newer version, e.g. 1.7.0_21. End you can build Camel without executing the tests with the following command: mvn clean install -Pfastinstall. Best, Christian Sent from a mobile device Am 12.06.2013 09:01 schrieb "santonel" : > Hello > > I've checked out the camel fro

Multiple cxf:serviceBeans in cxf:rsServer

2013-06-12 Thread Tarun Kumar
I have mutiple serviceBeans in cxf:rsServer component. http://localhost:8080/services/employees> Here ClassA and ClassB are implementation of service interfaces. I have one route class for each service route. for first service: from("cxfrs://bean://rsServer?resourceClass=ClassA.getC

RE: Is Quartz component a scheduled polling component?

2013-06-12 Thread icemanltd
please post Date: Wed, 12 Jun 2013 06:11:23 -0700 From: ml-node+s465427n5734134...@n5.nabble.com To: iceman...@hotmail.com Subject: Re: Is Quartz component a scheduled polling component? Thank you for your response. I had exactly what I wanted with a file endpoint and wanted to extend

Re: Is Quartz component a scheduled polling component?

2013-06-12 Thread icemanltd
Thank you for your response. I had exactly what I wanted with a file endpoint and wanted to extend that to a jms endpoint. I guess am misunderstanding the documentation. Anyway, I think I have accomplished what I wanted to do using consumer/producer templates and a bean. The route looks like

Re: Restful services using camel

2013-06-12 Thread Tarun Kumar
I dont want to create one bean (i.e. one interface and implementation class) for each service. If i do that, i will end up having as much interfaces as the number of services. Also, if i create one rsServer, How will from() in each service route be different from others? If i keep same endpoint (i

Camel build on windows 7

2013-06-12 Thread santonel
Hello I've checked out the camel from git (https://git-wip-us.apache.org/repos/asf/camel.git) and i'm trying to build it under windows (following the instruction from: http://camel.apache.org/building.html) , but without success. This is the output of my mvn -v: Apache Maven 3.0.5 (r01de14724cde

Re: Camel-Cxf Payload Mode - DefaultSEI not found

2013-06-12 Thread Willem Jiang
You need to specify the wsdlUrl attribute in the cxfEndpoint element. 发自我的 iPhone 在 2013-6-12,下午3:18,lmanchanda75 写道: > Hi Experts, > > I am writing a PAYLOAD mode client and for the same I have defined following > blueprint: > > > > > http://www.osgi.org/xmlns/blueprint/v1.0.0"; >

LDAP component - search for multiple users

2013-06-12 Thread jamalissimo
Hello guys, I am now trying to add functionality for searching multiple users to our project. We already have code which returns data for single user. From the begining it looked quite easy. I will just send request like (|(uid=user1)(uid=user2)) to LDAP. This actually works and I can see in karaf

Re: Sharing spring services with blueprint

2013-06-12 Thread Achim Nierbeck
Hi, yes it is possible, did you declare your beans to be services? You'll need to install the spring-dm features as well. Regards, Achim 2013/6/11 ramesh.rajendran > I have a spring context which exports the osgi service defined under > /META-INF/spring/spring-dao.xml like thisThe question is

Re: SV: file zipping..

2013-06-12 Thread milan777
hi... i am already using apache 2.11 so that is not the issue -- View this message in context: http://camel.465427.n5.nabble.com/file-zipping-tp5734077p5734084.html Sent from the Camel - Users mailing list archive at Nabble.com.

Sharing spring services with blueprint

2013-06-12 Thread ramesh.rajendran
I have a spring context which exports the osgi service defined under /META-INF/spring/spring-dao.xml like thisThe question is: I want to use the above defined service in my blueprint, which is defined under location /OSGI-INF/blueprint/blueprint.xml.After having this configuration i get following e

not Getting output after running the code......... :( :(

2013-06-12 Thread milan777
Here is the code i am neither getting output nor error please help me please anyone. -- View this message in context: http://camel.465427.n5.nabble.com/not-Getting-output-after-running-the-code-tp5734123.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel-Cxf Payload Mode - DefaultSEI not found

2013-06-12 Thread lmanchanda75
Hi Experts, I am writing a PAYLOAD mode client and for the same I have defined following blueprint: http://www.osgi.org/xmlns/blueprint/v1.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:camel="http://camel.apache.org/schema/blueprint";

Re: Upgrade Camel 2.10.1 - 2.11.0 - Camel keeps restarting

2013-06-12 Thread Martin Stiborský
Hello, it's deployed to Karaf 2.3.1 On Wed, Jun 12, 2013 at 4:35 AM, Willem Jiang wrote: > which version of Karaf are you using? It looks like a Karaf issue. > I don't think camel's change will cause this issue. > > 发自我的 iPhone > > 在 2013-6-12,上午1:51,Martin Stiborský 写道: > >> It's been a while b