I am using jboss-3.2.5.
I was wondering, why you have declare in the service descriptor as code
attribute of the mbean element. the resource class and not the MMB class.
Thinking, that could be a reason, why server.addNotifiactionListener() add the
handler into the listener registry of the res
What's wrong with this code:
public class MyXMBeanImpl extends ServiceMBeanSupport
| implements NotificationListener {
|
| public void handleNotification(Notification notif, Object handback) {
| log.info("handleNotification, event: "+notif);
| }
|
| protect
Ok. I found the new sort statements in inspectMBean.jsp, so I could disable them for
XMBeans:
if (!("org.jboss.mx.modelmbean.XMBean".equals(mbeanData.getClassName(
|{
| Arrays.sort(attributeInfo, MBEAN_FEATURE_INFO_COMPARATOR);
| Arrays.sort(operationInfo, MBEAN_FEAT
In JBoss 3.2.3, the MBean Inspector page of XMBeans lists the attributes in the order,
in which the attributes was declared in the xxx-xmbean.xml descriptor. With JBoss
3.2.5, the order of XMBeans attributes is no longer preserved, but the attributes are
listed sorted.
I really miss the possibli