Re: Apache Camel v2.12 | CXF Component | Basic Authentication | Web Service

2014-09-06 Thread sayed_india
Hello, I am a newbie in Camel and need of some basic authentication for CXF SOAP and REST service. Added the shared code in route builder , but not getting authentication being cheked when accessing. Please share the complete code base . Thanks and Regards, Sayed -- View this message in

Re: Async reques/response

2014-09-06 Thread edmondo1984
Hello, in Camel you need endpoint to be able to produce or consume data. So your route DSL look like the following : from(producer).to(consumer). In your case, if you don't have a proper producer, you can use a direct endpoint or a seda endpoint from(direct:input).to(activemq:etcetc) Then

Re: HTTP Basic Authentication

2014-09-06 Thread sayed_india
Hello, I tried with the code shared ,seems working fine at server end for CXF-SOAP as tested through SOAPUI tool. Please share the code for CXF REST Service. However I need a Java client to call the service. Tried many options but gives me errors. Please send me a sample Java main client to

Re: Async reques/response

2014-09-06 Thread Mohit Anchlia
Yes it does. Let me give it a shot On Sat, Sep 6, 2014 at 6:33 AM, edmondo1984 edmondo.po...@gmail.com wrote: Hello, in Camel you need endpoint to be able to produce or consume data. So your route DSL look like the following : from(producer).to(consumer). In your case, if you don't have