Re: Could not resolve a binding for null

2011-11-17 Thread yadavi
Hey, Thanks. Now i am not getting the error. I had both cxf and camel-cxf installed in servicemix. So i uninstalled the camel-cxf feature. -- View this message in context: http://camel.465427.n5.nabble.com/Could-not-resolve-a-binding-for-null-tp4997469p5000710.html Sent from the Camel - Users

Apache Camel 2.6.0 to 2.8.2 http4 problem

2011-11-17 Thread Carlos Manuel Figueiredo
I'm upgrading from Apache Camel 2.6.0 to 2.8.2 and I'm having a problem. Before the upgrade e manage to redirect a request from this endpoint id=camel uri=jetty:http://0.0.0.0:8080/camel?matchOnUriPrefix=trueamp;bridgeEndpoint=true/ to this endpoint id=system

Re: Apache Camel 2.6.0 to 2.8.2 http4 problem

2011-11-17 Thread Claus Ibsen
Try using jetty on the producer side as well as Jetty supports both, and they are fully async, which scales better. But you may have found some odd issue. Can you try with the 2.9.0-RC1 release as well? On Thu, Nov 17, 2011 at 11:27 AM, Carlos Manuel Figueiredo

RE: Apache Camel 2.6.0 to 2.8.2 http4 problem

2011-11-17 Thread Carlos Manuel Figueiredo
Using jetty in both sides it works fine. Thanks. But, I'm using jetty:https also in the consumer side. endpoint id=camel uri=jetty:http://0.0.0.0:8080/camel?matchOnUriPrefix=trueamp;bridgeEndpoint=true/ endpoint id=camel-https

Re: Type Conversion Question

2011-11-17 Thread Castyn
If I have an existing web service that I need to create a client for, transform the information, then pass it on to another webservice (after heavy data manipulation and changes in format) it seems like POJO would be ideal, at least for the first two pieces. It is my understanding that the client

How 2 catch infinite polling on a single file

2011-11-17 Thread szaruba
Hi everybody! After we implemented our routes based on ideas, described in the forum post http://camel.465427.n5.nabble.com/How-to-grab-a-only-one-file-with-camel-td4930104.html, we got a big problem. Basically we have 2 Camel routes, one of these routes is always asking (polling) for a single

http4 Component not exposing HttpContext

2011-11-17 Thread Jeff Segal
Hi all, I have a technical problem as well as a related documentation issue to report. The technical problem is as follows: HttpComponents 4.x provides a facility to use a HttpContext for a given request by calling HttpClient.execute(HttpUriRequest, HttpContext), but it looks like the http4

Re: How 2 catch infinite polling on a single file

2011-11-17 Thread Taariq Levack
Hi Are you lucky enough to use 2.9? If so just set the option sendEmptyMessageWhenIdle=true, see [1]. Else you need a polling strategy. [1] https://issues.apache.org/jira/browse/CAMEL-4508 Taariq On 17 Nov 2011, at 7:47 PM, szaruba stefan.zar...@student.tgm.ac.at wrote: Hi everybody!

Re: Regarding mail reading

2011-11-17 Thread Ketan Barapatre
Hello Bilgin I read SSL and Enable POP and IMAP in my gmail account. I have written code for polling mail but not getting any result. It must be my mistake somewhere. Please help me to correct my code. I want to read mails to complete my project. public class MailPoller { public static

sftp and path

2011-11-17 Thread oritush
I have a new issue with my sftp configuration - the path in the machine I connect to. I try few options, none of them worked for me: == *1. *I added no path. But then I got this exception: 2011-11-17 13:25:02.556 WARN

How to create a Proxy per request

2011-11-17 Thread KingAndrew
Hi All, Currently my system is Corba/RMI-IIOP. We are using Camel to decouple the services. We have a request repository that contains RequestItems which are the target remote objects. As a new RequestItemImpl is created how can I create a CamelProxyFactoryBean (proxy) on the fly? I would

Re: Remotely pulling messages using CAMEL

2011-11-17 Thread Hadrian Zbarcea
Hi, Please find a fairly complete example in my github repo [1]. To run it, just clone it and run mvn:install. You can open it in your IDE of choice and play with it. I did not yet explain in the readme why it is implemented that way and I intend to do it in the next couple of days, but the

Re: Regarding mail reading

2011-11-17 Thread Claus Ibsen
Hi You need to keep your main thread running. The start() on CamelContext is a non blocking operation. See this FAQ http://camel.apache.org/running-camel-standalone-and-have-it-keep-running.html On Thu, Nov 17, 2011 at 7:35 PM, Ketan Barapatre ketanbarapa...@gmail.com wrote: Hello Bilgin I

Re: How to create a Proxy per request

2011-11-17 Thread Claus Ibsen
Hi Have you seen the user guide? http://camel.apache.org/user-guide.html It has a link to using camel proxy http://camel.apache.org/using-camelproxy.html On Fri, Nov 18, 2011 at 1:59 AM, KingAndrew andrew.b...@bbtech.net wrote: Hi All,  Currently my system is Corba/RMI-IIOP.  We are using