Hi, I would like to ask, are any load/stress tests of CXF JMS transport executed? Perhaps there are some performance benchmarks in comparison with other frameworks (Axis, Metro)?
JMS Conduit code uses Spring JMSTemplate and SingleConnectionFactory for JMS communication. SingleConnectionFactory provides only one shared Connection and doesn't support Session pool: " In a standalone environment, using Spring's SingleConnectionFactory will result in a shared JMS Connection, with each transaction having its own independent Session. Alternatively, consider the use of a provider-specific pooling adapter such as ActiveMQ's PooledConnectionFactory class. In a standalone environment, using Spring's SingleConnectionFactory will result in a shared JMS Connection, with each transaction having its own independent Session. Alternatively, consider the use of a provider-specific pooling adapter such as ActiveMQ's PooledConnectionFactory class. " Basically it can have negative influence to performance ... have anybody experience with it? Regards, Andrei.
