|
|
This post has NOT been accepted by the mailing list yet.
Hi
i am sorry i have a problem with recipientlist.
i want design a dynamic multicast with recipientlist.
for example i sent messages form 1 entpoints to 2 other.
multicast is working:
<nabble_embed>
from("jms1:zero").
multicast().to("jms1:alpha", "jms1:beta");
</nabble_embed>
recipientlist inst working :
<nabble_embed>
String recList = new String("jms1:alpha,jms2:beta");
from("jms1:zero")
.recipientList(header("recList").tokenize(","));
</nabble_embed> maybe someone can help my :)
|