Questions tagged [mbeans]

MBeans are JMX beans, NOT JSF/CDI/Spring/etc "managed beans". For that, use [managed-bean] tag instead.

(Mbean) Java Management Extensions (JMX) is a Java technology that supplies tools for managing and monitoring applications, system objects, devices (e. g. printers) and service oriented networks.

The MBean represents a resource running in the Java virtual machine, such as an application or a Java EE technical service (transactional monitor, JDBC driver, etc.). They can be used for collecting statistics on concerns like performance, resources usage, or problems (pull); for getting and setting application configurations or properties (push/pull); and notifying events like faults or state changes (push).

354 questions
0
votes
1 answer

Getting all registered instances of own MBean

I have register my MBean app this way: ObjectName appName = new ObjectName("testpack.Application:name=myApp"); MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); mbs.registerMBean(this, appName); And next I'm trying to get all registered…
kbec
  • 3,415
  • 3
  • 27
  • 42
0
votes
1 answer

Custom MBean SNMP publishing on WebLogic 10.3.

I'm currently experiencing an issue with the custom mbean SNMP publishing function that WebLogic 10.3 provides. Basically, the problem is that certain attributes, which are all different numeric primitive types (long and double) are all coming null…
LdSe
  • 334
  • 1
  • 3
  • 17
0
votes
1 answer

Oracle: Error while registering Oracle JDBC Diagnosability MBean

I am trying to install OracleClient 11g and initially i had a issue regarding JDK compatibility. Error: so i ended up uninstalling JDK 7 (64bit) and reinstalled JDK 6 (32bit) and edited sqldeveloper.conf for SetJavaHome. SetJavaHome C:\Program…
Mad-D
  • 4,479
  • 18
  • 52
  • 93
0
votes
1 answer

WebSphere app server 7.0 GUI admin console and MBeans

I am new to WAS, and currently using WAS 7.0 The application I am deploying in WAS registers some MBeans when it starts up , I would like to know how to monitor/get info related to these registered MBeans from the admin console( GUI) of WAS. I see…
ARAVIAS
0
votes
2 answers

Behavior MBeanServerForwarder

I have asked a question here but I did not get an answer. Howerver, I continue my search and I found something which could please my need : "MBeanServerForwarder". I read the official JavaDoc but it is still not clear for me. So, does…
Mohammed
  • 115
  • 1
  • 13
-1
votes
1 answer

How to delpoy an Annotated MBean on jboss?

I am using an annotated pojo-MBean. But the mbean does not come up in the jmx-console after deployment. I believe that with annotations, usage of jboss-service.xml is not required. Could someone explain as to what I could probably be missing? I am…
-1
votes
1 answer

IBM Worklight - Can't run an app on WebSphere Application Server

My app runs well on Worklight Development Server, but not on WebSphere Application Server V8.5 Liberty Profile. I tried both Oracle JDK and IBM JDK, there was no difference. There was no problem connecting to the server with jconsole, although I had…
-1
votes
1 answer

how to prevent someone from invoking a method in a mBean deployed in the OSGI container

I have the osgi.core.framework mbean deployed into the OSGI container. This particular mbean has a method 'installBundleFromURL' which someone can use to deploy a malicious jar. I want to prevent anyone to invoke this particular method. Is there…
anusuya
  • 653
  • 1
  • 9
  • 24
-2
votes
1 answer

Persist JMX beans w/wo jolokia?

We are using jolokia inside tomcat as a REST interface for JMX beans, which makes querying JMX data like CPU or RAM very easy. Now, our customer wishes to query data in the past, which would require to store the JMX data to a kind of…
Andreas
  • 2,211
  • 1
  • 18
  • 36
1 2 3
23
24