0
votes
0answers
50 views

Logback's JMX and multiple web applications in WebLogic

I have several web applications utilizing slf4j and logback, all deployed to WebLogic 12c. I use JMX for controlling the logging. All applications have slf4j and logback included in WEB-INF/lib and ...
1
vote
0answers
39 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
27 views

How can I enable the jmx agent on Weblogic 9.2? [closed]

I'm having some trouble. I've tried almost a hundred jmx connection urls and several different calls with jconsole on command line, but no one of them seems to work I'm trying a different aproach now. ...
0
votes
2answers
207 views

Name [t3://127.0.0.1:7001/weblogic.management.mbeanservers.domainruntime] is not bound in this Context. Unable to find [t3:]

I have Tomcat 7.0 that has some Java code that I use to connect to a Weblogic 12c server to manage the weblogic server. I can use RMI/IIOP but I cannot use T3. Everyone says make sure the ...
0
votes
0answers
46 views

JMX client query

Please help answer the below. Which of the following acts as JMX client Weblogic Administration Console WLST WLNav
0
votes
1answer
139 views

Which MBeans to use (and how) to programmatically determine memory lows for app (CQ5) deployed inside Weblogic

I have to write a standalone Java app that monitors CQ5, deployed inside Weblogic (especially memory usage). I was able to connect to the Domain Runtime Server in weblogic, using the class below (as ...
2
votes
1answer
165 views

Change an attribute in a mbean using wlst.

I am working with Oracle Service Bus and I want to create a script that will change an attribute in a specific mbean. I have located the mbean: com.bea:Name=OperationsConfig, Location=AdminServer, ...
4
votes
1answer
260 views

Which MBeanServer to use in Tomcat, WebLogic, Glassfish et al?

I am currently working on http://truevfs.java.net , a virtual file system for Java. TrueVFS is modular and uses a plug-in architecture to load features at run-time without the need for configuring ...
0
votes
0answers
85 views

associate transaction with thread in weblogic

I want to see if some thread opens too many transaction during execution. I can connect to server through JMX and get list of current transaction and can get list of thread but: I cannot link one to ...
0
votes
0answers
204 views

Weblogic 8.1 MBean change password error

I need some help. I have the logic below to reset password for an user in WebLogic 8.1. String url = request.getScheme() + "://" + request.getServerName() + ...
0
votes
1answer
138 views

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 ...
1
vote
1answer
555 views

Differences in calling JMX MBean remotely or from servlet deployed in the same JVM

I have several applications deployed on WebLogic server. Those applications expose some JMX MBeans. When I call operations on those MBeans remotely through JConsole or JRMC, they work fine. But ...
1
vote
1answer
1k views

Creating WebLogic users programmatically from a standalone Java client

I'm trying to create users in WebLogic (10.3.4) programmatically from a simple standalone Java client (one class --> two methods: createWeblogicUser() & main()). public void createWeblogicUser() ...
0
votes
1answer
237 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 ...
1
vote
1answer
1k 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
639 views

JMX Monitoring on a Weblogic Cluster, how to monitor java.lang space

On a remote Weblogic Cluster, I would access to each size of the Non Heap memory of each instance of my cluster. I'm connected to my admin server with a url such as this one: ...
0
votes
1answer
681 views

Use JMX (MBean) to log WebLogic status

I know we can use MBean to get WebLogic's status. For example, use JDBCDataSourceRuntimeMBean (http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e13951/core/index.html) to get the JDBC status. ...
1
vote
2answers
938 views

Weblogic ALSBConfigurationMBean initialization

I'm trying to make an OSB (ESB) automated build process using Java. For that purpose I need to do the following things: Connect to weblogic - this is working //The weblogic version is 10.3.0.0 Make ...
1
vote
2answers
996 views

Automatically unregister MBeans (registered by Spring) when WebLogic application is undeployed

In my Spring application (which is deployed on WebLogic server) I have the following Spring beans definitions: <context:mbean-server /> <bean id="mbeanExporter" ...
1
vote
1answer
41 views

number of servers running app in cluster

I have a web service app running in a cluster on WebLogic 10.3. Can anyone tell me if there is a way to programmatically determine the number of servers in the cluster that currently have the app up ...
2
votes
3answers
7k views

How can I connect to Weblogic remotely using JConsole?

Which URL, port and weblogic server side settings do I need to use?
0
votes
1answer
1k views

Start/stop a deployment in Weblogic 9 using JMX (or WLST)

I want to start/stop a deployment in weblogic 9 server. I prefer to use JMX to talk to a weblogic MBean. I already use this to start/stop a server, but I cannot find the MBean for starting/stopping ...
0
votes
1answer
556 views

Using JMX to read ejb manifest jar and ejb-jar.xml in ejb jar inside ear

I have an ear deployed on weblogic console. I need to check contents of manifest file and ejb-jar.xml of a jar that is present in the deployed ear. Currently I am using the code below to access jar ...
2
votes
1answer
762 views

Java - Weblogic - JMX : request available free memory on all servers

Once I get a JMX connection to my master weblogic server, how can I retrieve the current available free memory for each of my registered servers ? I have requested the DomainRuntimeServiceMBean and ...
5
votes
2answers
2k views

Weblogic health monitoring feature

Inside the weblogic console, when you click on a deployment, there is a tab named 'Monitoring' and a subtab named 'Health'. How can i expose my application health to this tab? Is there a developer's ...
4
votes
4answers
16k views

How to enable JMX on Weblogic 10.x

I have an application that is JMX enabled. It has its own JMX Agent and some MBeans. When I launch the application in WebLogic, I am able to connect to the JMX agent via the RMI url and perform the ...
0
votes
3answers
346 views

Can my requirements be met with JMX?

I am completely new to JMX. I have a specific requirement and wanted to know if it is possible to accomplish within the scope of JMX. Requirements: I have a set of resources which include many ...