Re: [DISCUSS] Remove the camel:dot goal

2013-11-28 Thread Charles Moulliard
+1 On Fri, Nov 29, 2013 at 3:08 AM, Hadrian Zbarcea wrote: > The camel:dot goal provided by the camel-maven-plugin has not been > maintained in 5+ years, produces poor quality output and, most importantly, > doesn't seem to be used. I propose to remove it. > > Hadrian > > > -- Charles Moulli

Re: Using org.apache.camel.Exchange

2013-11-28 Thread Claire
I wonder if this because of the way I called Exchange? Here's the full exception. *Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=com.swift.iplasa.flows.NTUCLite2Adapter-FromSWIFT-Exchange, config=osgibundle:/META-INF/spring/*.xml)) org.springframework.beans.factory.Bea

Re: Using org.apache.camel.Exchange

2013-11-28 Thread Claire
Charles, I called bean the way you suggested me but I can't add attribute name class inside . Following is my xml. http://camel.apache.org/schema/spring";> but once I run it, I got following error inside log: *Application context refresh failed (OsgiBundleXmlApplicationContext(bun

Re: [DISCUSS] Remove the camel:dot goal

2013-11-28 Thread Johan Edstrom
+1 Sent from my pressure cooker. On Nov 28, 2013, at 21:19, Tracy Snell wrote: > +1 > > On Nov 28, 2013, at 9:08 PM, Hadrian Zbarcea wrote: > >> The camel:dot goal provided by the camel-maven-plugin has not been >> maintained in 5+ years, produces poor quality output and, most importantly,

Re: [DISCUSS] Remove the camel:dot goal

2013-11-28 Thread Tracy Snell
+1 On Nov 28, 2013, at 9:08 PM, Hadrian Zbarcea wrote: > The camel:dot goal provided by the camel-maven-plugin has not been maintained > in 5+ years, produces poor quality output and, most importantly, doesn't seem > to be used. I propose to remove it. > > Hadrian > >

[DISCUSS] Remove the camel:dot goal

2013-11-28 Thread Hadrian Zbarcea
The camel:dot goal provided by the camel-maven-plugin has not been maintained in 5+ years, produces poor quality output and, most importantly, doesn't seem to be used. I propose to remove it. Hadrian

Re: git commit: CAMEL-7023: Added hawtio goal to camel maven plugin.

2013-11-28 Thread Hadrian Zbarcea
Actually, funny you should ask. The camel:dot goal (DotMojo.java) has not been maintained for 5+ years, is not used and produces output of very poor quality. We agreed to remove the camel console from the camel distro and RedHat intends, I assume, to promote the hawtio solution. Other parties

Re: Using org.apache.camel.Exchange

2013-11-28 Thread Charles Moulliard
Can you change your route to specify the method that you would like to call and in debug mode add break at that line if (headerName == null) to see what you receive from Camel Exchange (In.body, in.headers ...) ? --> NameOfTheHeader should correspond to the name of the header that you are loo

Re: Github account setup

2013-11-28 Thread Christoph Emmersberger
Hi I was facing a similar issue in the past with a different project and though that it might be somehow related to the way you configured you authentication. To me it seemed, that as soon as you setup key based, machine level authenticated (which is somehow required of you do frequent commit

Github account setup

2013-11-28 Thread Bilgin Ibryam
I'm wondering why my commits to Camel are not assigned to my existing github user. My apache email address is already added to my github account, but obviously that is not enough. Any suggestions? -- Bilgin Ibryam Apache Camel & Apache OFBiz committer Blog: ofbizian.com Twitter: @bibryam

Re: git commit: CAMEL-7023: Added hawtio goal to camel maven plugin.

2013-11-28 Thread James Strachan
Should we back out the use of graphviz too? Do you think generating images for camel routes should be -1'd too? On 28 November 2013 13:41, James Strachan wrote: > On 28 November 2013 13:32, Daniel Kulp wrote: > >> >> I’m -1 to this commit. I don’t think we should be adding a bunch of >> targ

Re: git commit: CAMEL-7023: Added hawtio goal to camel maven plugin.

2013-11-28 Thread James Strachan
On 28 November 2013 13:32, Daniel Kulp wrote: > > I’m -1 to this commit. I don’t think we should be adding a bunch of > targets for all the various container/platform integrations. If that were true I'd maybe -1 it too; but this commit looks to be about making it easy for Camel users to visua

Re: git commit: CAMEL-7023: Added hawtio goal to camel maven plugin.

2013-11-28 Thread Daniel Kulp
I’m -1 to this commit. I don’t think we should be adding a bunch of targets for all the various container/platform integrations. This starts going down the road of adding targets for karaf, glassfish, etc… We should just provide standard packaging that the hawtio:run command or whatever wo

Re: Using org.apache.camel.Exchange

2013-11-28 Thread Claire
Charles, Thank you for reply. There's a file I would like to read body and specify some tag as header for that file. I would also want to get content of that file as body. Following is my xml file and java in which I used exchange: testJava.java