Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

JOnAS Integration

The Bull Research & Development team in charge of JOnAS development is pleased to announce the Service Mix integration in the lastest JOnAS release.

Installation

It is now possible after some configuration to deploy the ServiceMix web application into JOnAS server. This web application is using JORAM as jms provider : the one released with JOnAS.

ServiceMix web application configuration :

  • configure JORAM jms provider instead of activeMQ in the web app WEB-INF/applicationContext.xml
    Code Block
    
    <bean id="jmsFactory"
    	class="org.objectweb.joram.client.jms.local.LocalConnectionFactory">
    </bean>
    
  • remove references to activeMQ in the web app WEB-INF/
    Code Block
    
    <context-param>
    	<param-name>contextConfigLocation</param-name>
    	<param-value>/WEB-INF/applicationContext.xml</param-value>
      </context-param>
    

Example

Limitations

ServiceMix clustering is using ActiveMQ classes so this functionnality is not supported in JOnAS which is using JORAM.

JORAM could not be configured through spring xm files, so servicemix lightweight jms component could not be used.