Re: Camel Smart Proxy Integration Pattern

2009-08-05 Thread Willem Jiang
Hi, camel-jms support the Request/Reply[1] EIP out of box. In you case, you could let use the polling thread to send the request to the message queue and wait for the response. If you want to correlate the request message and response message yourself in different thread, you need to set up

Re: Camel Smart Proxy Integration Pattern

2009-08-05 Thread Carlo Camerino
hi, my usecase is somewhat like this, i'm connecting a legacy system via tcp/ip. I plan to multiplex that tcp/ip port by putting in a receiver thread that continuously polls the result. requesting threads can sort of queue their request and wait for the proper reply. while waiting for their reply

Re: Camel Smart Proxy Integration Pattern

2009-08-04 Thread Claus Ibsen
On Tue, Aug 4, 2009 at 9:07 PM, Carlo Camerino wrote: > Hi, > Does camel implement the smart proxy integration pattern? There is no specific DSL in Camel that implements the smart proxy. You should be able to use the existing blocks in Camel to assemble the smart proxy. What is your use case? >

Re: Camel Smart Proxy Integration Pattern

2009-08-04 Thread Claus Ibsen
On Tue, Aug 4, 2009 at 9:11 PM, Mick Knutson wrote: > Where is that described? > >From the EIP bible http://www.enterpriseintegrationpatterns.com/SmartProxy.html > --- > Thank You… > > Mick Knutson, President > > BASE Logic, Inc. > Enterprise Architecture, Design, Mentoring & Agile Consulting >

Re: Camel Smart Proxy Integration Pattern

2009-08-04 Thread Mick Knutson
Where is that described? --- Thank You… Mick Knutson, President BASE Logic, Inc. Enterprise Architecture, Design, Mentoring & Agile Consulting p. (866) BLiNC-411: (254-6241-1) f. (415) 685-4233 Website: http://baselogic.com Linked IN: http://linkedin.com/in/mickknutson Vacation Rental: http://t

Camel Smart Proxy Integration Pattern

2009-08-04 Thread Carlo Camerino
Hi, Does camel implement the smart proxy integration pattern? Thanks