0
votes
0answers
29 views

Permission required to query JNDIName of datasource in websphere

As any user when I try to get the JNDIName of a datasource configured in websphere using JMX mbean I get Access is denied for the getJndiName operation on DataSource MBean because of insufficient ...
1
vote
0answers
43 views

Target DataSource dynamically in Weblogic, JMX or another options

As i mentioned in title ;we need to target datasources to their related wepapp on weblogic. After some googling i could find handling datasources defined before and deployed .war apps on the server . ...
0
votes
0answers
58 views

Hosting singleton object as jmx service?

I have three webapps app1, app2 and app3 using tomcat. app1 and app2 are web apps. app3 simply host singleton class which will be accessed by app1 and app2. I am planning to use to JNDI lookup the ...
1
vote
1answer
664 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
0answers
160 views

Spring JNDI properties dynamic reload via JMX

In my spring config I am loading properties from a location specified via JNDI like so: <bean id="mainPropertyFile" class="org.springframework.jndi.JndiObjectFactoryBean"> <property ...
0
votes
1answer
235 views

Relationship among JNDI, Spring and JMX

I would like to know about what is the relationship between JNDI and Spring? Is spring an advanced version of JNDI? Both are used to create an object from string names. Can we say that an For JNDI an ...
0
votes
0answers
296 views

How do I get the total number of active/idle connections for a Weblogic datasource?

In our WebLogic application (Spring 2.5x), I want to determine, via Java code, the number of active and idle database connections that we have open on our server. The WL domain for the app has a ...
1
vote
2answers
2k views

Which Tomcat Mbean can be used to access web app information

I am trying to write a client tool which monitors an application running in Tomcat 5.5. I know there are quite a few already available but the majority of them are web based and dont provide a lot of ...
4
votes
1answer
751 views

How to create resource ref for a JBoss MBean

A have application deployed to JBoss. It contains Inside it I register Quartz MBean wich trigger scheduled task. How can I create reouce ref for that MBean to access resource by java:/comp/env/* and ...