You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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
    <bean id="jmsFactory"
    	class="org.objectweb.joram.client.jms.local.LocalConnectionFactory">
    </bean>
    
  • remove references to activeMQ in the web app WEB-INF/
    <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. 

  • No labels