sebboudreau
Feb 27th, 2006, 01:04 PM
Hi all,
I'm trying to register my beans to my MBeanServer (integrated into Websphere Studio Application Developper 5.1.2) through the Spring's application context.xml file (Spring version is 1.2.6). My beans don't seem to be registered. With MC4J, none of them are visible.
Here is my app context:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter">
<property name="beans">
<map>
<entry key="bean:name=routeur" value-ref="routeur" />
</map>
</property>
</bean>
<bean id="routeur" class="ca.promutuel.esb.routeur.Routeur" />
</beans>
any help would be appreciated!
Thanks!
I'm trying to register my beans to my MBeanServer (integrated into Websphere Studio Application Developper 5.1.2) through the Spring's application context.xml file (Spring version is 1.2.6). My beans don't seem to be registered. With MC4J, none of them are visible.
Here is my app context:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter">
<property name="beans">
<map>
<entry key="bean:name=routeur" value-ref="routeur" />
</map>
</property>
</bean>
<bean id="routeur" class="ca.promutuel.esb.routeur.Routeur" />
</beans>
any help would be appreciated!
Thanks!