Camel.trunk.notest - Build # 2579 - Failure

2015-11-27 Thread Apache Jenkins Server
The Apache Jenkins build system has built Camel.trunk.notest (build #2579) Status: Failure Check console output at https://builds.apache.org/job/Camel.trunk.notest/2579/ to view the results.

[GitHub] camel pull request: CAMEL-9340:

2015-11-27 Thread snurmine
GitHub user snurmine opened a pull request: https://github.com/apache/camel/pull/700 CAMEL-9340: Using working dir as default parent file for fileStore file when fileStore file has no parent file given. You can merge this pull request into a Git repository by running: $ git p

[GitHub] camel pull request: CAMEL-9340

2015-11-27 Thread snurmine
Github user snurmine closed the pull request at: https://github.com/apache/camel/pull/699 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is ena

Re: How to call external client using camel?

2015-11-27 Thread deshmukh.yashodee...@gmail.com
Hi Claus I had now modified my code : http://esbqa.dnb.com:8192/CommonServices/services/DNBCompanyService/match/main.wsdl"/> but now i am getting below error can you please help it will be really helpful: [pache.camel.spring.Main.main()] MainSupport

[GitHub] camel pull request: Add After Camel Start Hook

2015-11-27 Thread awgtek
Github user awgtek closed the pull request at: https://github.com/apache/camel/pull/684 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabl

Re: How to call external client using camel?

2015-11-27 Thread deshmukh.yashodee...@gmail.com
http://lnx142.us.dnb.com:8192/CommonServices/services/DNBCompanyService/match/"/> i had added this process after to< http: and in my class i had below code public class Next2GenProcessor implements Processor { @Override public void process(Ex

Re: How to call external client using camel?

2015-11-27 Thread Claus Ibsen
Just add more to the route after the then you have the response in the message body/headers. On Fri, Nov 27, 2015 at 12:36 PM, deshmukh.yashodee...@gmail.com wrote: > But is it correct approach to exchange data with this client ? and how would > i get the response? > > > > -- > View this message

Re: Camel Guice

2015-11-27 Thread Claus Ibsen
No I dont think so. As guice is about java code and ioc stuff then people would likely also use the java dsl to define routes. On Fri, Nov 27, 2015 at 12:39 PM, rameshmallipudi wrote: > Hi, > Is there any example written in XML Route with Google guice? > > Regards, > Ramesh > > > > -- > View this

Re: How to call external client using camel?

2015-11-27 Thread deshmukh.yashodee...@gmail.com
But is it correct approach to exchange data with this client ? and how would i get the response? -- View this message in context: http://camel.465427.n5.nabble.com/How-to-call-external-client-using-camel-tp5774475p5774478.html Sent from the Camel Development mailing list archive at Nabble.com.

Re: Camel Guice

2015-11-27 Thread rameshmallipudi
Hi, Is there any example written in XML Route with Google guice? Regards, Ramesh -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Guice-tp484226p5774479.html Sent from the Camel Development mailing list archive at Nabble.com.

Re: How to call external client using camel?

2015-11-27 Thread Claus Ibsen
Well the stacktrace tells you that your computer cannot connect to that address java.nio.channels.UnresolvedAddressException On Fri, Nov 27, 2015 at 11:12 AM, deshmukh.yashodee...@gmail.com wrote: > I was trying to call a external client in an InOut pattern to exchange data. > Basically i wan

How to call external client using camel?

2015-11-27 Thread deshmukh.yashodee...@gmail.com
I was trying to call a external client in an InOut pattern to exchange data. Basically i want to send some data to a third party site and in response i will get some data back. i tried using camel cxf but it not working and i also used camel spring-ws but not able to understand it. Currently i hav