Re: how to call route from other route?

2011-10-18 Thread Trop
Hi Gnanaguru Likely I am incorrectly expressed. I need like this ftp://anonymous@localhost/"; /> Regards trp -- View this message in context: http://camel.465427.n5.nabble.com/how-to-call-route-from-other-route-tp4913610p4916399.html Sent from the Camel - Users m

Re: how to call route from other route?

2011-10-18 Thread Gnanaguru S
Hi Trop ftp://anonymous@localhost/"; /> ftp://anonymous@localhost/"; /> You can use two routes. If you want to do it parallel, Then you can specify each route as a separate bundle. Regards Guru -- View this message in context: http://camel.465427.n5.nab

Re: can't route from servlet component to http component

2011-10-18 Thread Willem Jiang
First you need to cache the stream[1] for posting it across different endpoints. http://0.0.0.0:9080/send/license"/> will create a producer, it doesn't listen to the address as you want. [1]http://camel.apache.org/stream-caching.html On 10/19/11 7:18 AM, Joe Niski wrote: I'm trying to configu

Re: can't route from servlet component to http component

2011-10-18 Thread Joe Niski
i should have mentioned that i'm using camel 2.7.1. *Joe Niski* Senior Developer - Information Services | NWEA™ PHONE 503.548.5207 | FAX 503.639.7873 NWEA.ORG | Partnering to help all kids learn™ On 10/18/2011 04:18 PM, Joe Niski wrote: I'm trying to configure a mult

can't route from servlet component to http component

2011-10-18 Thread Joe Niski
I'm trying to configure a multicast route that receives an HTTP POST and POSTs it to multiple instances of a service. From reading the documentation, the book, this list, and playing with the camel-example-servlet-tomcat, it looks like it should be simple, but i'm stuck. Here's my web.xml fo

Re: how to call route from other route?

2011-10-18 Thread boday
Trop, your example does this already...its just asynchronous because you are using JMS. If you want synchronous behavior, then use direct... Trop wrote: > > Hello, > I have route: > > ftp://anonymous@localhost/"; /> > > > > > and i want call from > > > etc. > > Regard

Re: CXFRS and printing out put to XML file

2011-10-18 Thread santoshjoshi
Thanks Everyone in this forum, I got the solution, basically my camel-context configuration was not up to that mark, The below configuration solved my problem. http://REALSERVER.COM/REST/"; createdFromAPI="true" staticSubresourceResolution="true">

Re: how to call route from other route?

2011-10-18 Thread Trop
Hi, I want to cause a problem downloading files from FTP on different events such as /quartz:/, /jms:/, /jetty:/. /direct:/ is not suitable, because ftp://...";> upload files to ftp. Sorry for my english. Regards trp -- View this message in context: http://camel.465427.n5.nabble.com/h

Re: Directory synchronization with Camel

2011-10-18 Thread Ioannis Canellos
Have you tied the noop=true option on the URI? -- *Ioannis Canellos* * FuseSource ** Blog: http://iocanel.blogspot.com ** Apache Karaf Committer & PMC Apache ServiceMix Committer Apache Gora

Re: jid-malformed error in XMPP component

2011-10-18 Thread Jeff Segal
Just to add to this, I receive the same error when pointing at a local instance of Openfire rather than jabber.org. On Mon, Oct 17, 2011 at 8:17 AM, Jeff Segal wrote: > Hi Claus, > > I'm using 2.8.1. > > Jeff > > > On Mon, Oct 17, 2011 at 8:09 AM, Claus Ibsen wrote: > >> Hi >> >> What version o

Directory synchronization with Camel

2011-10-18 Thread Radomir Kadlec
Hello, I have to use Camel (and Servicemix) for *remote directory synchronization*. Files shall be transfered from the source directory structure to the destination place over Internet. I supposed the best way to implement this case is to use Camel *file* and *ftp* components. But I can not find a

Re: how to call route from other route?

2011-10-18 Thread Ioannis Canellos
Can you please provide some more details on what you want to do? Typically, routes communicate with each other when they share endpoints. For example: But I am not sure if this is what you want. *Ioannis Canellos* * FuseSource ** Blog: http://iocanel.blogspo

how to call route from other route?

2011-10-18 Thread Trop
Hello, I have route: ftp://anonymous@localhost/"; /> and i want call from etc. Regards trp -- View this message in context: http://camel.465427.n5.nabble.com/how-to-call-route-from-other-route-tp4913610p4913610.html Sent from the Camel - Users mailing list archiv

Missing "detail" element in SOAP fault

2011-10-18 Thread sengel
Hello, we have a system consisting of (web and other) clients and our backend (SOAP web services). Now when we throw a Fault/Exception in a backend operation, the SOAP fault looks like this: http://schemas.xmlsoap.org/soap/envelope/";> env:Server An entity with th

Re: problem with Timer based polling consumer

2011-10-18 Thread Claus Ibsen
On Tue, Oct 18, 2011 at 1:29 PM, matsumoto wrote: > no, becouse I want do this with timer > somethilng like that > > timer?perioid=6000 . process(check condition) if condition is true do  from > activemq:queue with size to activemq:queue > I have fixed the wiki page. Will get updated later. You

Re: problem with Timer based polling consumer

2011-10-18 Thread matsumoto
no, becouse I want do this with timer somethilng like that timer?perioid=6000 . process(check condition) if condition is true do from activemq:queue with size to activemq:queue -- View this message in context: http://camel.465427.n5.nabble.com/problem-with-Timer-based-polling-consumer-tp491314

Re: simple example for JDBC in osgi

2011-10-18 Thread Claus Ibsen
On Tue, Oct 18, 2011 at 11:23 AM, Ioannis Canellos wrote: > You might also want to have a look that the following patch (its not > committed yet) which uses camel-sql with both spring and blueprint routes. > > https://issues.apache.org/jira/browse/CAMEL-4465 > I have committed the patch to trunk.

Re: problem with Timer based polling consumer

2011-10-18 Thread Claus Ibsen
On Tue, Oct 18, 2011 at 12:10 PM, matsumoto wrote: > Hi > I have a problem with Timer based polling consumer > I want consume all messages from a JMS queue, process the message and send > them to the next queue > but I don't know how to do this and on > http://camel.apache.org/polling-consumer.htm

Re: Multiple camelContext in Spring XML with single properties reference

2011-10-18 Thread Willem Jiang
properties components is used per camel context. I'm afraid you have to define it inside of the camel context if you have multiple camelContext to use. On Tue Oct 18 15:47:26 2011, mhawkshaw wrote: Hi, I'm using Camel 2.7.2, and I have a Spring XML file with multiple Camel Contexts defined. T

problem with Timer based polling consumer

2011-10-18 Thread matsumoto
Hi I have a problem with Timer based polling consumer I want consume all messages from a JMS queue, process the message and send them to the next queue but I don't know how to do this and on http://camel.apache.org/polling-consumer.html is Error formatting macro: snippet: java.lang.IndexOutOfBound

Re: Hazelcast Component persistence

2011-10-18 Thread Ioannis Canellos
There is a pending patch for commit, which would allow the hazelcast component to be passed an existing Hazelcast instance. Once this is committed you will be able to configure Hazelcast with any way you want and just pass it to the component. -- *Ioannis Canellos* * FuseSource

Re: simple example for JDBC in osgi

2011-10-18 Thread Ioannis Canellos
You might also want to have a look that the following patch (its not committed yet) which uses camel-sql with both spring and blueprint routes. https://issues.apache.org/jira/browse/CAMEL-4465 -- *Ioannis Canellos* * FuseSource ** Blog: http://iocanel.blogspot.com ** Ap

Multiple camelContext in Spring XML with single properties reference

2011-10-18 Thread mhawkshaw
Hi, I'm using Camel 2.7.2, and I have a Spring XML file with multiple Camel Contexts defined. To expose the properties defined in an external file to the camel contexts, we have the following lines in the XML: We can then use the syntax {{my.property}} in multiple camelContext definition

Re: How to setup a dynamic route using beans in Java w/o having a spring ref to them?

2011-10-18 Thread klausb
Hi Jesus, it's not a burning issue any longer (for me), but I'm still curious. So if you could sketch your solution, that would be helpful. I can imagine, picking up this approach again in future projects. Regards, klaus. -- View this message in context: http://camel.465427.n5.nabble.com/How-to

Re: simple example for JDBC in osgi

2011-10-18 Thread Claus Ibsen
On Tue, Oct 18, 2011 at 8:03 AM, Filippo Balicchia wrote: > Hello, > I try to find a simple jdbc example that run under osgi environment. > While browsing jira i found the following issue CAMEL-3096, but on repository > I' don't find nothing. > > > Could you, please suggest me a link where i can i