Re: Mail reading goes in loop

2012-10-14 Thread Ketan Barapatre
Hello All, To fix my issue I am using Message Filter. I have already implemented filter. I read every mail has unique Message-Id in header so When polling to mailbox starts I'm keeping Message-Id of first read message. And then comparing it with other message Ids if match is success then I'm stopp

Re: Dynamic jms destination from wsdl?

2012-10-14 Thread Willem jiang
Hi, I'm not sure if you are using soap over jms which CXF supports. If so, you should be able to get the information of the jms-uri by looking up the CXF message context by using the key of "requestURI". You can get the CXF Message by using the code like this from(SIMPLE_ENDPOINT_URI).process(n

Re: Can WebLogic 12C support Camel 2.1?

2012-10-14 Thread Willem jiang
Current we don't provide the official support of WebLogic, as we short of hands on running the tests across these commercial Products. So you are asking for the community support for WebLogic 12C. Please share you experience or the issue that you hit, and there will be lots of hands willing to he

Re: JMS request/reply and aggregate

2012-10-14 Thread Willem jiang
Current Camel Message exchange pattern doesn't support 1 request with N response at the same time. But you can consider to using the MEP.InOnly and combine with Camel template in the CXF service implementation class. In this way you can use aggregation to gather the n responses and set the respo

Re: Camel CXF Compnenent consuming a webservice having header of type X.(X maps to xsd)

2012-10-14 Thread Willem jiang
Hi, I'm not sure what kind of header you want to put. Is it a soap header or just a http header ? For the soap header you can take a look at this thread[1] For the http header, you can take a look at the code here[2] [1]http://cxf.547215.n5.nabble.com/add-namespace-to-soap-header-td5716003.html

Can WebLogic 12C support Camel 2.1?

2012-10-14 Thread rinotan
I have been trying to implement Camel 12.1 with Weblogic 12C without success. The exact .ear file can be implement on Weblogic 10.3 without any issues. I have tried sourcing for solutions but it seems that there are very limited resource pertaining to issue that i have encountered. Can anyone tell

Re: Ampersand in URI query parameter not working (CAMEL-4857 doesn't fix)

2012-10-14 Thread pmcb55
Hi Claus, I'm using the latest released Camel version (2.10.0), but also tried with the trunk version too. I don't think your suggestion would work for me, as I need to create a recipient list, with each recipient having different query parameters, so I need to encode those query params into each

Re: JMS request/reply and aggregate

2012-10-14 Thread realice
also if I were to use transaction, people seems to be suggesting use two legs, one for the requestqueue and one for the replyqueue, how would i route the message coming back from the replyqueue to originator of the requestqueue? thanks -- View this message in context: http://camel.465427.n5.na

Re: aggregator question: how do I send reply back to the requestor

2012-10-14 Thread Willem.Jiang
Hi, Did you have any chance to take a look at the loan broker example[1]? Basically you just need to setup right aggregation strategy to put the response message together. [1]http://camel.apache.org/loan-broker-example.html Willem -- View this message in context: http://camel.465427.n5.nabbl

Dynamic jms destination from wsdl?

2012-10-14 Thread helander
In a route that starts with a cxf-endpoint and ends with a jms-endpoint, I would like to extract the jms destination from a port in the wsdl configured on the cxf-endpoint. The port in the wsdl contains the jms-uri of the destination to be used by the jms-endpoint. I know how to dynamically set the

CFP Open for ApacheCon North America 2013

2012-10-14 Thread Christian Müller
Forwarded the mail from plann...@apachecon.com Hi All Hopefully everyone's looking forward to ApacheCon Europe 2012 in about 3 weeks time? If you've not bought your ticket yet, you best be quick as we're getting pretty close to capacity! As well as ACEU, we're also thinking about North America.

Re: Camel Confusion

2012-10-14 Thread zuff
Hi Willem , You bring out an very important point, I have no linkage between the two routes. that is the part of the main reason for my confusion. Being new to Camel, I'm still not sure how does a. System A receive requests through JMS b. sent request to an external system c. Receive the resp

Re: Dynamic Routing (ApplicationContext is null)

2012-10-14 Thread zuff
Hi Claus, Sorry for the confusion i caused. I attempted to do a simplified model over the weekend and posted on the topic "Best Practise for (Dynamic Topic in Ear Project)", kindly provide advise if possible. I'm thinking i sort of need a pollEnricher and a AggreatorStrategy after doing some

Re: Best Practise for (Dynamic Topic in Ear Project)

2012-10-14 Thread zuff
Dear All, I written a simplify version of what i am trying to achieve. Third Party Program Emulator: The program will read some files from an in folder and generate some files into the out folders. It perform an internal prioritization based on the properties in the file. In this simplified examp