2008/6/23 greenbean <[EMAIL PROTECTED]>: > I have a need to take the XML payload from a message in a queue, duplicate it > X times based on a configuration, modify the value of an element for each > message to a different value, and send each to the same destination. > > It seem like based on the documentation I want something like a splitter > (actually a duplicator) in conjunction with a content enricher. What > patterns would you suggest to implement this?
Yeah it could be a splitter. Really the splitter doesn't have to generate a subset of the original message - its just intended to take a message and generate N messages to be sent on. Another approach is to just have N tranforms? I guess it depends on how you want to implement each of these transforms. -- James ------- http://macstrac.blogspot.com/ Open Source Integration http://open.iona.com
