Hi Karolis,
you can find explanation about flows in the following wiki pages:
http://servicemix.apache.org/nmr-flows.html
http://servicemix.apache.org/how-stuff-works.html
In your case, SMX is able to use seda, JMS and JCA flows which the
default configuration for SMX >= 3.3.0. By default, SMX will use the
first in the list but you can force to use another one.
Regards
JB
Karolis Petrauskas wrote:
Hi all,
I am using servicemix 3.3.1, and have a question regarding flow
types. Let’s say I have a default configuration:
...
<sm:flows>
<sm:sedaFlow />
<sm:jmsFlow jmsURL="${activemq.url}" />
<sm:jcaFlow connectionManager="#connectionManager"
jmsURL="${activemq.url}" />
</sm:flows>
...
How does servicemix decide which flow to use for a particular
exchanges? Logs at the debug level show me that only seda flow is
used. As I understand, in this case messages are in-memory only and
cannot survive a server restart?
Karolis Petrauskas