Tagged Questions
0
votes
1answer
66 views
JBoss 7.x SAR archive class loading issue
I am trying to build a sar archive that contains an MXBean and deploy it in JBoss 7.
Until recently I had a problem referencing classes from other libraries in my MXBean class because JBoss wouldn't ...
0
votes
1answer
38 views
Reference external libraries from a SAR archive in JBoss AS 7
My situation is the following: I want to deploy a special MXBean using a SAR archive. This should be easy, right?
Right, unless the bean references classes from an external library. When this ...
0
votes
1answer
35 views
Jconsole randomly stops connecting
We have a jboss 7 instance running and hosting a web application. JMX remote has been turned on with username/password authentication and we are able to connect to it fine. Kindly not we are using ...
0
votes
0answers
112 views
Unable to connect to a new MBean Server created using createMBeanServer in JBoss 7.1.1 [closed]
Sorry, if this has already been discussed and solved somewhere else.
I am trying to create an MBean Server and register some MBeans to it in JBoss 7.1.1. Following is the code snippet I am using to ...
0
votes
0answers
308 views
JBOSS EAP 6 JMX MBeans via rmi
I am kind of new to JMX , Here I am trying to use jconsole provided by jdk to remotely read the MBeans of JBOSS EAP 6. I followed tutorial ...
2
votes
1answer
122 views
How to add @ManagedAttribute and @ManagedOperation to an MBean that extends another class
I have created an MBean that extends a class and implements interfaces.
I am trying to add some new @ManagedAttribute and @ManagedOperation but they are not shown in jconsole.
I also see that the ...
6
votes
2answers
136 views
How to Show Class Description, Attribute descriptions and Operation Descriptions of jmx MBeans
I have created some beans that implement an interface and created a custom MBean exporter to expose those beans to jconsole.
Although everything works fine, the descriptions are not shown correctly.
...
0
votes
0answers
359 views
Jboss AS 7.1.1-Final Remote JMX call fails with status “WAITING”
I am trying to connect to remote Jboss 7.1.1-Final from Visual VM over JMX protocol supported as "remoting-jmx". Jboss is running in standalone mode with port 9999 opened for remote access. I can ...
0
votes
1answer
205 views
JBoss 7.1: java.lang.IllegalStateException: No 'jboss' MBeanServer found
My application is deployed on JBoss 7.1 (standalone).
I am getting an exception on the following line:
MBeanServerConnection server = MBeanServerLocator.locateJBoss();
The exception is:
JBoss: ...
0
votes
0answers
178 views
JBoss 7 JMX Documentation
We have a generic system that uses JMX to monitor various application servers, and I am now required to configure monitoring for JBoss 7.
we used to rely on the fact that previous versions of JBoss ...
0
votes
0answers
309 views
JBoss AS 7.1.1, JConsole and TopThreads plugin
Could somebody help me with configuring JBoss JConsole script, to enable it with topthreads plugin?
I successfulyy connected to my remote server, but I can't seem to find way to attach plugin into ...
1
vote
1answer
597 views
How to bind an object to JNDI in Jboss 7 from MBean? (Naming context is read-only)
When binding object to JNDI from MBean (legacy code to jboss 7.1) i am getting following exception:
Caused by: java.lang.UnsupportedOperationException: JBAS011859: Naming context is read-only
at ...
0
votes
1answer
487 views
Invoke a remote MBean in JBOSS AS 7.1.1 using http/https protocol
In General, we use the following code to invoke a MBean in JBOSS AS 7.1.1,
JMXServiceURL serviceURL = new JMXServiceURL("service:jmx:remoting-jmx://(bind address to invoke):(default bind port is ...
1
vote
1answer
1k views
Getting Instance of MBean service in JBOSS AS 7.1.1
I am trying to access a MBean service deployed into JBOSS AS 7.1.1. My MBean service is also a Queue Listener. I am trying to get an instance of this MBean service to register it as a Queue Listener ...
9
votes
1answer
2k views
Port MBean from JBoss 4.x to JBoss 7
we're currently in the process of porting some of our projects from JBoss 4.x to JBoss 7.
So far everything seems to work fine, except for our MBeans, which we're commonly using to provide simple ...
2
votes
2answers
3k views
JMX server locator replacement in JBoss AS 7 for class MBeanServerLocator
I am currently using JBoss 4.3 for a web application. I would like to move to the JBoss AS 7. I have been able to fix must of the differences of the application in both versions but one. The ...
15
votes
3answers
17k views
JBoss AS 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 ...