Tagged Questions

MBeans are managed beans, Java objects that represent resources to be managed.

learn more… | top users | synonyms

11
votes
2answers
4k views

JBoss 7 JMX Console

I spent some time checking out JBoss AS7 today. I am impressed with what I have seen so far but I noticed that good ol' JMX-Console no longer exist. Does anyone know why it was left out? I ...
5
votes
4answers
5k views

Accessing a remote MBean server

I am running a client/server application using JBoss. How can I connect to the server JVM's MBeanServer? I want to use the MemoryMX MBean to track the memory consumption. I can connect to the JBoss ...
5
votes
2answers
4k views

Automatically starting a JBoss service (MBean)

I'm trying to build a JBoss service that should be started automatically, each time the server is initiated. I've got the following class structure for my service: public interface ...
5
votes
5answers
3k views

Java app performance counters viewed in Perfmon

I have a Java app running on Tomcat, and I would like to monitor counters using Windows Performance Monitor. Is this possible using a JMX adapter for the Java MBeans or by some other means?
4
votes
1answer
798 views

Is it necessary to unregister an MBean from the Platform MBean Server?

I've begun playing with MBeans for exposing some information about an app. Pretty much the totality of HOWTOs / Tutorials / Blog posts / Samples online teach you how to implement an MBean and register ...
3
votes
2answers
50 views

Name for @ManagedOperation in Spring JMX

I used org.springframework.jmx.export.annotation.@ManagedOperation for expose a method as MBEan. I want operation name different with method name,but managed operation don't have any attribute for it ...
3
votes
1answer
617 views

Managed Mbeans from ManagementFactory in JDK1.6 - NotCompliantMBeanException:

I was using ManagementFactory to get ManagedMbeans in JDK1.5 and JBOSS 4.X. Now wanted to move my same code to JDK 1.6. The Mbean part breaks throwing the exception Caused by: ...
3
votes
1answer
328 views

How should I access a JMX MBeanServer running in the same VM?

For a simple Java library which performs operations in constant intervals I have implemented JMX management using MXBeans and it works as expected, I can query the status and set parameters, supend / ...
3
votes
2answers
1k views

Problem with JMX query of Coherence node MBeans visible in JConsole

I'm using JMX to build a custom tool for monitoring remote Coherence clusters at work. I'm able to connect just fine and query MBeans directly, and I've acquired nearly all the information I need. ...
3
votes
4answers
1k views

Can an MBean be run under Tomcat?

We have 2 applications that run under JBoss. I am looking for a way to reduce the overhead of the server. The main app runs under Tomcat. The other app is made up of MBeans. Is there a way to run ...
2
votes
1answer
196 views

How to set the name of the net.sf.ehcache.CacheManager for JMX monitoring?

I am using EhCache 1.4.0, Spring 3.0.5 in a web application deployed on Tomcat 6 using JRE 1.6. I am exposing via JMX the L2 cache management, like this: <bean id="mbeanServer" ...
2
votes
2answers
165 views

what is tabular dataformat in java and how i can save tabular data format in to a string array list?

Hi when you have a look at MBeans classes you will come to know few classes also return data in tabular data format of java. Can anyone let me know what is this and how i can save tabular data format ...
2
votes
1answer
379 views

Accessing Websphere 7 MBeans using Sun JConsole

How do I access Websphere 7 MBeans using Sun's JConsole?
2
votes
3answers
292 views

Update a single object across multiple process in java

A couple of Relational DB tables are managed by a single object cache that resides in a process. When the cache is committed the tables are updated. The DB relational tables are updated by regular SQL ...
2
votes
2answers
1k views

Forcing Spring's MBeanExporter to use a particular MBeanServer

I have a web application running on JBoss 4.2.2. In order to monitor performance I have enabled the internal platform JMX server that ships with Java 5. In other words, I added: ...
2
votes
1answer
549 views

Are there (experimental) JSR-262 JMX-WS enabled Java tools or applications?

I am very interested in the Web Services Connector for Java Management Extensions (JMX) Agents and the reference implementation ws-jmx-connector. JSR 262 will provide a new opportunity for ...
2
votes
2answers
453 views

Is ist possible to get a MemoryMXBean instance with a remote JVM?

I found this nice article which explains how to query your current memory for your VM http://recursor.blogspot.com/2006/10/memory-notifications-in-java.html My question is, is it possible to get an ...
1
vote
2answers
38 views

Design pattern with MBeans in Java

When using Management Beans in Java, its interface is exposed through MBean Interface. But if there are various parameters to be exposed through MBean. And with different version of the system, many ...
1
vote
1answer
285 views

The JNDI lookup for the JTA UserTransaction is not available to MBean threads in Websphere Application Server 7

I'm trying to invoke business logic via JMX (using 'standard' MBeans) in a web application in Websphere Application Server 7 with JTA switched on and would like to know why this business logic can't ...
1
vote
1answer
27 views

How to enumerate all the MBeans for a JDK?

I am wondering whether I can enumerate all the MBeans getting from ManagementFactory.getRuntimeMXBean?
1
vote
0answers
38 views

Deploying custom MBeans to Hadoop

I'm starting development of a Hadoop application and I'd like to manage it via a couple of MBeans. I've experimented with using MBeanUtils.register and MBeanServer's register method in jar files I'm ...
1
vote
1answer
76 views

Access JMSQueue via JMX on clustered environment

Configuration: WLS-cluster (10.3) with two nodes #1 and #2. One migratable JMSServer currently available on #1. One migratable JMSQueue. Problem: Some EJB is populating the JSMQueue with a message ...
1
vote
2answers
79 views

Same JMX Mbean class for many application at same server

I have more than 5 spring web application and all of them are utilizing another common library. This common library has its own MBeans. Because of mandatory unique objectName constraint, my ...
1
vote
2answers
277 views

Detecting newly registered MBeans

I'm using the platform MBeans server in Java 1.6, running in an OSGi container. Using the MBeans for statistic counters and events mainly. The implementation of them are in one bundle, but they're ...
1
vote
1answer
273 views

JMX Client Session

I've bean studying JMX for a while, but I'm stuck. I have an application that exposes some functionality to remote clients via JMX, although existing security features may be sufficiant for most ...
1
vote
1answer
393 views

SNMP monitoring of MBeans (attributes.xml in snmp-adaptor.sar) (JBoss)

I want to monitor (via SNMP) some attributes of several JBoss MBeans that are running on my system: I have configured my attributes.xml unders snmp-adaptor.sar to include: <mbean ...
1
vote
1answer
449 views

ManagementFactory.getPlatformMBeanServer() vs MBeanServerFactory.createMBeanServer()

Can anyone please clarify what the differences are between the two? The Javadoc is really obscure for my proper understanding. One thing I have noticed is if I use ...
1
vote
1answer
230 views

Converting standard mbeans to dynamic mbeans / Code generation

I have a bunch of standard MBeans which I need to convert to dynamic MBeans, (main purpose is to add user friendly descriptions to attributes, operations and operation parameters). I was wondering if ...
1
vote
2answers
104 views

How could I get an .ear's filesize at runtime?

I started out attempting to do this with the Length ant task, but realized that that would be done before the ear is packaged. Packaging the ear, then checking the file size, and then placing it in ...
1
vote
1answer
225 views

Securing MBeans operations

I've got some MBean operations that I need to secure. I would like the users to be required to log in as the server admin and I would like this to be setup programmaticly or, preferably by a config ...
1
vote
7answers
10k views

How can I make “jconsole” work with Websphere 6.1?

I've deployed some Managed Beans on WebSphere 6.1 and I've managed to invoke them through a standalone client, but when I try to use the application "jconsole" distributed with the standard JDK can ...
0
votes
1answer
15 views

mBeans Client deployed on weblogic gives a security exception?

iam trying to follow the documentation of the mbeans for weblogic and create a web application to access an already created custom beans running in another application deployed in the server . iam ...
0
votes
1answer
24 views

access Mbeans on weblogic

From the documentation of oracle : Domain Runtime MBean Server : This MBean server also acts as a single point of access for MBeans that reside on Managed Servers. what i want to do is to use ...
0
votes
1answer
55 views

getting http request info from thread

is it possible to get the http request information from a thread (not the current thread)? I want to be able to enumerate all the live threads and get the request uri for each of them. any ideas? ...
0
votes
1answer
36 views

How to modify an attribute which have a no-primitive data type with JMX?

I would like to know if it's possible to modify java.awt.Color attribute through the jConsole. I have a class like this : public class MyColor implements MyColorMBean { private Color background; ...
0
votes
1answer
79 views

wsadmin: How to inspect existing resource references?

With $AdminApp view <applicationName> -MapResRefToEJB it is possible to list the resource references defined for a deployed EJB module. However, the result of that command is plain text (that in ...
0
votes
0answers
21 views

Retrieving messages from a jmx topic with a subscriber?

I have about 500 durable messages that are "stuck" on a topic, registered to durable subscriber X. Is there a way that I can retieve these messages - by wrting them to file - by querying the broker ...
0
votes
1answer
52 views

Illegal argument for setLoggerLevel() loggingmxbean

I am getting Illegal argument(Bad Level) exception when i try to call setLoggerLevel() through jconsole. The method is invoked successfully if i give the level as "INFO". anything other than that ...
0
votes
1answer
76 views

How to access a JMX Mbean from a tomcat website?

I have a web service that exposes an mbean. I am able to view that mbean using jconsole. Now I need that function exposed on a new tomcat website.
0
votes
0answers
113 views

Mbeans registered to mbean server not showing up in jconsole

I create a mbean server using MBeanServerFactory.createMBeanServer and register mbeans with it. I can find the mbean server in jconsole but when I connect to it I do not see registered mbeans. Here ...
0
votes
1answer
59 views

JMX MXBean enum handling conversion errors

When using an enum as the value component of a Map in an MXBean it appears I am having difficulty with conversion of the enum. public enum MyEnum { EnumVal1, EnumVal2, EnumVal3 }; public ...
0
votes
1answer
186 views

Calling JBoss MBean functions to get threaddump

An application is using JBoss 4.2.2, and I have found it necessary to call listThreadDump(), and I expect it is in ServerInfo. I am thinking the jar I need to find this information is jboss-jmx.jar. ...
0
votes
0answers
33 views

Java database on mbeans

I have to select way to create database but without tables, all data have be loaded periodically from text cvs files. On this data have be made enough complicate calculations. And have be possibility ...
0
votes
1answer
192 views

MBean operations from Weblogic administration console or WLST

Within my deployed application, MBeans are available to show internal statistics and provide operations. I can access them with a third party client app via JMX. Is there a way to display and interact ...
0
votes
0answers
67 views

How MBeans Class methods can be used in java code?

i want to know what is the way we can connect to a jmx service url and use the methods of mbeans say suppose getStatus(). i want to use the output of methods in my java code.
0
votes
2answers
139 views

JBoss JDBC MBean Prevent Startup If Server Not Found

During JBoss startup I have a Persistence Manager that depends on a JDBC connection (DefaultDS). The JDBC connection starts fine whether or not it can actually connect to the database so when the ...
0
votes
0answers
44 views

Update configuration file without re-deploy in Glassfish / JEE

Can you please let me know a good idea to have a file which can be updated without re-building the ear file and re-deploying the application. It has a couple of options with true or false flags. I ...
0
votes
0answers
103 views

JMX HTML Adapter: setAttributes skips attribute when its value is cleared?

We've have several classes that implement DynamicMBean. They follow conventions like those in this article: A real example of a Dynamic MBean. When the user makes a change in JConsole/VisualVM, ...
0
votes
1answer
149 views

Java Event Handling Help (Notifications vs EventObjects)

I'm building an Android app and a Blackberry app (same app different platforms). There is an abstract class that I am building that will handle events. For instance, I touch the "save" button on ...
0
votes
0answers
342 views

Weblogic 10.3.4 MBeans in Java: Trying to read messages from a JMS queue

I am trying to write a Java class that uses Weblogic MBeans. I have the following code portion below that will read all JMS queues for my server and display a message count. I am trying to also read ...

1 2