Hi!

Is there a way to export a spring managed bean to a remote JMX server? I'm using weblogic 10.3 and i tried several ways without success:

First i tried to lookup MBeanServer reference via JNDI but i get CORBA exception while exporting:
Code:
com.sun.corba.se.impl.orbutil.ORBUtility throwNotSerializableForCorba
WARNUNG: "IOP00100006: (BAD_PARAM) Class org.springframework.jmx.export.SpringModelMBean is not Serializable"
org.omg.CORBA.BAD_PARAM:   vmcid: OMG  minor code: 6 completed: Maybe
Second i tried exporting the MBean via a MBeanServerConnectionFactoryBean but i get ClassNotFoundException because my classes aren't found at the server-side. Therefore i prefer first approach.

I would appreciate any hints!
Thank you!