Thank you for the info. I was able to connect using jconsole. I found a script online and modified for my environment.
heres the link where I found the script:
stackoverflow.com/questions/357095/how-d...The script works... However I am only able to see the mbeans tab in jconsole. The memory, threads, etc are all greyed out/disabled.
What I am asking is it possible to use websphere's mbeans in Jconsole so I could see threads, memory, etc. As of now those are greyed out/disabled.
I've heard you can but I can't find any documention( besides the script ) that shows how to do it.
Keep in mind security is enabled.
Here's the script:
@echo off
set HOST=prdWS7AS03
set PORT=2813
REM - #### Change Line below to your location of Websphere Install
set WAS_HOME="C:\Program Files (x86)\IBM\WebSphere\AppServer"
REM - #### Change the line below to your location of property files
set PROPERTYFILES=C:\Users\bfinkeldei\Documents\suncountry
set CLIENTSAS=-Dcom.ibm.CORBA.ConfigURL=file:/%PROPERTYFILES%/sas.client.props
set SSLCLIENT=-Dcom.ibm.SSL.ConfigURL=file:/%PROPERTYFILES%/ssl.client.props
set PROVIDER=-Djava.naming.provider.url=corbaname:iiop:%HOST%:
%PORT%
set EXTDIRS=-
Djava.ext.dirs=/%WAS_HOME%/plugins;/%WAS_HOME%/plugins/com.ibm
.ws.security.crypto;/%WAS_HOME%/lib;/%WAS_HOME%/
java/jre/lib;/
%WAS_HOME%/java/jre/lib/ext
set PROPS=
set PROPS=%PROPS% %CLIENTSAS%
set PROPS=%PROPS% %PROVIDER%
set PROPS=%PROPS% %SSLCLIENT%
set PROPS=%PROPS% %EXTDIRS%
set CLASSPATH=
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\java\lib\tools.jar
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\runtimes
\com.ibm.ws.admin.client_7.0.0.jar
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\runtimes\com.ibm.
ws.ejb.thinclient_7.0.0.jar
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\runtimes\
com.ibm.ws.orb_7.0.0.
jar
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\java\lib\jconsole.jar
set CLASSPATH=%CLASSPATH%;%WAS_HOME%\plugins\com.ibm.ws.
security.crypto.jar
set URL=service:jmx:iiop://%HOST%:%PORT%/jndi/JMXConnector
@echo on
:: %WAS_HOME%\java\bin\
java -classpath %CLASSPATH% %PROPS%
sun.tools.jconsole.JConsole %URL%