WLS 8.1 and JMX 1.2 remote API

I am developing a web app that uses JMX 1.2 remote API to manager remote MBean
servers. Even I put the JMX 1.2 jar files to the classpath, WLS still loads the
previous version (1.0) of JMX bundled in weblogic.jar file, I think. And I am
not eager to mess up weblogic.jar file either.
Is there anyway to use JMX 1.2 remote API in WLS 8.1? If not, is there a patch
from BEA? And when will JMX 1.2 be supported by WLS? Thanks,
Jack

The next release of WLS is tentatively scheduled some time early next
year. JMX 1.2 will be supported in that release.
Thanks,
-satya
Jack Liu wrote:
Thanks for the reply. I heard BEA will release WLS 8.1 SP3 in June. Based on your
message, JMX 1.2 will not be supported by any WLS 8.1. So can you give me an estimate
of which release and when will JMX 1.2 be supported? Thanks!
Satya Ghattu <[email protected]> wrote:
Jack,
JMX 1.2 Remote API will be supported in the next version of WLS. There
is no patch available for 8.1 and as of now there are no intentions to
support 8.1 with JMX 1.2.
Thanks,
-satya
Jack Liu wrote:
I am developing a web app that uses JMX 1.2 remote API to manager remoteMBean
servers. Even I put the JMX 1.2 jar files to the classpath, WLS stillloads the
previous version (1.0) of JMX bundled in weblogic.jar file, I think.And I am
not eager to mess up weblogic.jar file either.
Is there anyway to use JMX 1.2 remote API in WLS 8.1? If not, is therea patch
from BEA? And when will JMX 1.2 be supported by WLS? Thanks,
Jack

Similar Messages

  • Possible to connect between JMX 1.0 and JMX 1.2

    Hi,
    We have a module that needs to send notifications. This java module is running in a J2EE Weblogic 8.1 webapp server. Weblogic support JMX 1.0.
    Outside the J2EE server in another JVM we have the JMXAgent and the MBeans running as a regular server ( in J2SE). This server uses JMX 1.2 with the remote API ( not in JMX 1.0).
    Both use the jdk1.4.x version of java.
    The problem we have is to send the notification ( from weblogic) to the MBean since they support different JMX versions.
    Any hints?
    cheers,
    //mike

    Hi,
    You will need to use a proprietary connector to exchange notifications between a JMX 1.0 application and a JMX 1.2 application, because JMX Remote API connector servers will
    not work on top of JMX 1.0.
    If weblogic 8 implements such a proprietary connector, you might be able to use its server part in your weblogic application, and its client part from within a client JVM that contains JMX 1.2.
    http://e-docs.bea.com/wls/docs81/index.html
    You might also try to use other proprietary connectors, such as those offered by the
    Java DMK - for instance you could start a Java DMK 4.2 connector server (JDMK 4.2 is
    based on JMX 1.0) in your weblogic application, and uses Java DMK 5.1/OpenDMK
    in your JMX 1.2 client (Java DMK 4.2 and Java DMK 5.1/OpenDMK are inter-operable).
    http://java.sun.com/products/jdmk/release.html#42
    http://java.sun.com/products/jdmk
    https://opendmk.dev.java.net/
    Hope this helps,
    -- daniel
    http://blogs.sun.com/jmxetc

  • JMSML - XML Based Mark-Up Language for BEA WebLogic JMS and JMX

              JMSML is a Mark-Up language designed and developed to make Java Messaging Service
              (JMS) and Java Management Extensions (JMX) programming easy by hiding all the
              JMS and JMX Java API complexity behind a few, simple, easy to use XML tags.
              Both the White Paper and the binary download are available in dev2dev.beasys.com
              at the link below:
              http://dev2dev.beasys.com/resourcelibrary/whitepapers.jsp?highlight=whitepapers
              Regards
              [email protected]
              

    Hi,
    I finally managed to post a message to ActiveMQ 5.4.2 from WLS 10.3. I created a foreign JMS Server in WLS. I am not sure if you still have this issue, but I was facing this problem and managed to resolve it so posting the reply!
    I placed the activemq-all-5.4.2.jar file in WLS server classpath.
    The settings I used for the Foreign Server are:
    General tab
    JNDI Initial Context Factory: org.apache.activemq.jndi.ActiveMQInitialContextFactory
    JNDI Connection URL: tcp://localhost:61616
    Destinations Tab
    Name: TestQueue
    Local JNDI Name: TestQueue
    Remote JNDI Name: dynamicQueues/TestQueue (I tried with a normal queue, but it didn't work. So used dynamicQueues here. Will try with other queue also)
    Connection Factories Tab
    Name: AMQConnectionFactory (
    Local JNDI Name: AMQConnectionFactory
    Remote JNDI Name: ConnectionFactory (This is default name given by Active MQ, you can change by adding names in jndi.properties file and placing it in config folder of ActiveMQ installation. Please check here: http://activemq.apache.org/jndi-support.html)
    Using this configuration I was able to post message to ActiveMQ queue from Oracle Service Bus. One more issue to be taken care is that if the message type is not "Text" then the message body was coming as blank in ActiveMQ. So set the message type as "Text" explicitly.

  • ConnectionPool problems with WLS 7.0 and Oracle 9.2

    Hi,
    We are using WLS 7.0 SP4, and Oracle 9 and the Oracle thin driver type 4. In our
    application on the productive system (and only there) we constantly encounter
    a whole set of SQLExceptions which have all in common that the Connection from
    the pool is not valid any more when the application tries to use it.
    Typical, recurring error messages are:
    - Exhausted ResultSet
    - Connection has already been closed
    - Closed Statement
    - Transaction is no longer active - status committing
    - NullPointerException at
    weblogic.jdbc.pool.Connection.prepareStatement()
    There are no special Statements which create these errors. They are spread at
    random across practically every query the application creates, and the same queries
    sometimes succeed and sometimes fail.
    I double and triple checked that all Connections, Statements and ResultSets are
    closed immediately after use. As an example, I attached a code snippet and a resulting
    StackTrace which.
    The problem also seems to occur only with an (unknown) minimum of concurrent usern,
    since in the approval tests on an almost identical test system these errors never
    occurred.
    I also followed the advice from Oracle and installed the latest Oracle JDBC driver
    (Oracle 10g) - to no avail.
    What else can I do?
    Another question: Is it correct that my Oracle JDBC driver is in the application
    classpath (via a reference in the Manifest file of the application jar), not in
    the system classpath? There has never been a problem with that, but in a Newsgroup
    answer from Nov 10, 2003 (subject: "ResultSet closes prematurely"), Joe Weinstein
    suggested to "get it listed at the
    front of the -classpath argument that the startWebLogic script creates for the
    java line that starts the server".
    I hesitate to do so, since the driver is in a standard WebApp- directory, WEB-INF/lib.
    Is it possible and safe to add a jar located there to the system classpath? If
    it is possible, why is it necessary?
    Best regards,
    Andreas Zehrt
    [CodeSnippetsAndStackTraceForConnectionPoolProblem.txt]

    Andreas Zehrt wrote:
    Hi Joe,
    Your hint that there is a threading problem was right:
    On further investigation of the code I found out that the class that passes the
    Connection to the DAO not only stores it as a member at some point (which is not
    a good idea anyway) but is also a singleton - then, of course, it's no surprise
    that the Connection gets invalid in a incalculable way when concurrent threads
    share it.
    The singleton instantiation was not so obvious because the way of instantiation
    is controlled by a configuration parameter that can be overridden at different
    levels.
    I changed it and the productive logfiles indicate that the SQLExceptions related
    to that class have disappeared.I am happy to have helped.
    So, thanks a lot for the advice.
    But I am still wondering why this code has worked for so long a time with WLS
    5.1 and Oracle 8 (the system has been productive for over 2 years). Even in the
    approval tests with WLS 7.0 and Oracle 9, we did not run into problems, although
    it was multi-user environment.Mo idea.
    I still believe that there is a difference between WLS 5.1 and 7.0 in the way
    it treats pooled Oracle JDBC Connections. I wished both Oracle and Bea could be
    a little more explicit about those changes and possible version incompatabilities
    beyond the general advice "use the latest thin driver".Though I can think of no change to our pooling which would have had any material
    effect in this case, I will certainly do what I can to see that our documentation
    is explicit about changes.
    Joe
    Best regards, Andreas
    Joe Weinstein <[email protected]> wrote:
    Hi Andreas.
    Andreas Zehrt wrote:
    Hi,
    We are using WLS 7.0 SP4, and Oracle 9 and the Oracle thin driver type4. In our
    application on the productive system (and only there) we constantlyencounter
    a whole set of SQLExceptions which have all in common that the Connectionfrom
    the pool is not valid any more when the application tries to use it.
    Typical, recurring error messages are:
    - Exhausted ResultSetThat is typically if the statement that created it is either re-executed
    or closed.
    - Connection has already been closedAs described. If you give a stacktrace, we could make a debug patch which
    would show
    where it was originally closed.
    - Closed Statementsame as above.
    - Transaction is no longer active - status committingThat implies your code is obtaining a connection from a transactional
    datasource,
    and then later trying to use it after the transaction which it was associated
    with,
    is finished.
    - NullPointerException at
    weblogic.jdbc.pool.Connection.prepareStatement()Maybe any of the above.
    There are no special Statements which create these errors. They arespread at
    random across practically every query the application creates, andthe same queries
    sometimes succeed and sometimes fail.
    I double and triple checked that all Connections, Statements and ResultSetsare
    closed immediately after use. As an example, I attached a code snippetand a resulting
    StackTrace which.
    The problem also seems to occur only with an (unknown) minimum of concurrentusern,
    since in the approval tests on an almost identical test system theseerrors never
    occurred.
    I also followed the advice from Oracle and installed the latest OracleJDBC driver
    (Oracle 10g) - to no avail.
    What else can I do?
    Another question: Is it correct that my Oracle JDBC driver is in theapplication
    classpath (via a reference in the Manifest file of the applicationjar), not in
    the system classpath? There has never been a problem with that, butin a Newsgroup
    answer from Nov 10, 2003 (subject: "ResultSet closes prematurely"),Joe Weinstein
    suggested to "get it listed at the
    front of the -classpath argument that the startWebLogic script createsfor the
    java line that starts the server".
    I hesitate to do so, since the driver is in a standard WebApp- directory,WEB-INF/lib.
    Is it possible and safe to add a jar located there to the system classpath?If
    it is possible, why is it necessary?I was only concerned to ensure we know which driver we are working with.
    We also ship
    an oracle thin driver, which becomes obsolete soon...
    I am concerned that your code creates pool connections to be used later.
    The problems
    can arise if more than one thread ever gets the same connection, or if
    the connection
    is used in the same thread, spanning transactions. It does also seem
    that there may
    be a threading issue, because if two threads each call the code to create
    a connection,
    and two connections are made, but one over-writes the other, the two
    threads can
    end up using the same connection, and closing it. The over-written one
    never gets closed,
    resulting in that leak message you got...
    Joe
    The Connection parameter is opened by a business component class, ComaServiceProviderClassicImpl.It is propagated through
    several classes in the business layer, but not used, until the DAOtakes it to make the query.
    So, the Connection is closed where it was opened, not in the DAO class.
    public class ConcernDAOImpl extends BaseDAO {
         public Collection getConcernsForIncidents(Connection conn, Collectionincidents)
    throws DataAccessException, ConstraintException, ComaParseException{>
    sqlMessage.append(")");
    String sqlStmt = sqlMessage.toString();
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    try {
    pstmt = conn.prepareStatement(sqlStmt);
    rs = pstmt.executeQuery();
    while (rs != null && rs.next()) {
    final Concern concern =
    new Concern(DAOUtil.getComaOID(rs, ComaDBNames.KDANR));
    concern.setIncidentOID(DAOUtil.getComaOID(rs, ComaDBNames.KDAVGENR));
    return concerns;
    } catch (SQLException sqle) {
    // Wrapps real SQL exception
    String[] message = new String[]{sqle.getMessage(), sqlStmt};
    throw new DataAccessException(ExpCode.S_ORACLE_SQL, message,
    sqle);
    } finally {
    closeAll(rs, pstmt);
    _logger.exitDebug(method);
    Here, the Connection is acquired and finally closed
    public class ComaServiceProviderClassicImpl {
         public void updateComplaint(
    final Request updateRequest,
    final ResponseSingleElement response,
    final Principal principal)
    throws SystemException {
    try {
    logger.info("updateComplaint", "store incident");
    // store the incident in the database
    incidentManager.storeIncident(getConnection(), updateIncident);
    // reload the incident from Cache and / or the databaseto get the ContactReferences.
    Incident returnIncident = incidentManager.loadIncident(//IncidentManager passes the Connection to the DAO
    getConnection(), updateIncident.getOID());
    } catch (RemoteException rex) {
    // remote exceptions
    rollbackIfNecessary();
    CoreUtils.unwrapRemoteException(rex, logger);
    } catch (SystemException e) {
    // all other exceptions --> rollback if necessary and rethrow
    rollbackIfNecessary();
    throw e;
    } finally {
    removeConnection();
    logger.exitDebug("updateComplaint");
    This is the resulting StackTrace:
    sql exception: [Closed Statement: next] - sql statement: [select *
         at de.deutschepost.ubbrief.coma.persistence.dao.ConcernDAOImpl.getConcernsForIncidents(ConcernDAOImpl.java:363)
         at de.deutschepost.ubbrief.coma.persistence.dao.CachingConcernDAOImpl.getConcernsForIncidents(CachingConcernDAOImpl.java:129)
         at de.deutschepost.ubbrief.coma.persistence.incidentmanager.IncidentManagerImpl.loadConcernStructuresIntoIncidents(IncidentManagerImpl.java:1067)
         at de.deutschepost.ubbrief.coma.persistence.incidentmanager.IncidentManagerImpl.loadStructureForIncident(IncidentManagerImpl.java:320)
         at de.deutschepost.ubbrief.coma.persistence.incidentmanager.IncidentManagerImpl.loadIncidents(IncidentManagerImpl.java:264)
         at de.deutschepost.ubbrief.coma.persistence.taskmanager.TaskManagerImpl.selectTasksForUser(TaskManagerImpl.java:299)
         at de.deutschepost.ubbrief.coma.service.z2.ComaServiceProviderZ2Impl.getTaskList(ComaServiceProviderZ2Impl.java:113)
         at de.deutschepost.ubbrief.coma.service.z2.ComaServiceProviderZ2Bean_1dhrj7_EOImpl.getTaskList(ComaServiceProviderZ2Bean_1dhrj7_EOImpl.java:154)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList.runServiceMethod(CMPGetTaskList.java:64)
         at de.deutschepost.ubbrief.coma.sbbx.sp.BasicMethodProvider.execute(BasicMethodProvider.java:145)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl.execute(CMPGetTaskList_9b9mv5_EOImpl.java:46)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl_WLSkel.invoke(UnknownSource)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:159)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:263)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:230)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl_WLStub.execute(UnknownSource)
         at de.deutschepost.ubbrief.backbone.jazz.impl.core.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:115)
         at de.deutschepost.ubbrief.backbone.common.impl.core.rpc.server.ServerKernelImpl.handleTransportMessage(ServerKernelImpl.java:270)
         at de.deutschepost.ubbrief.backbone.common.impl.core.messaging.MessageTransport.handleMessage(MessageTransport.java:454)
         at de.deutschepost.ubbrief.backbone.common.impl.core.KernelFacade.handleMessage(KernelFacade.java:209)
         at de.deutschepost.ubbrief.backbone.jazz.impl.backbone.BackboneBean.messageArrived(BackboneBean.java:637)
         at de.deutschepost.ubbrief.backbone.jazz.impl.backbone.BackboneBean_ina9d7_ELOImpl.messageArrived(BackboneBean_ina9d7_ELOImpl.java:105)
         at de.deutschepost.ubbrief.backbone.jazz.impl.transport.receive.LocalQueueReceiveBean.deliverMessage(LocalQueueReceiveBean.java:43)
         at de.deutschepost.ubbrief.backbone.jazz.impl.transport.receive.AbstractMessageReceiveBean.onMessage(AbstractMessageReceiveBean.java:127)
         at weblogic.ejb20.internal.MDListener.execute(MDListener.java:377)
         at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:311)
         at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:286)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2351)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:2267)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:234)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:210)
    ####<May 26, 2004 12:18:43 PM CEST> <Warning> <JDBC> <S0048016> <REMA20Z><Finalizer> <kernel identity> <> <001074> <A JDBC pool connection leak
    was detected. A Connection leak occurs when a connection obtained from
    the pool was not closed explicitly by calling close() and then was disposed
    by the garbage collector and returned to the connection pool. The following
    stack trace at create shows where the leaked connection was created.
    Stack trace at connection create:
         at weblogic.jdbc.pool.Connection.<init>(Connection.java:66)
         at weblogic.jdbc.pool.Driver.allocateConnection(Driver.java:294)
         at weblogic.jdbc.pool.Driver.connect(Driver.java:210)
         at weblogic.jdbc.jts.Driver.getNonTxConnection(Driver.java:373)
         at weblogic.jdbc.jts.Driver.connect(Driver.java:129)
         at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:287)
         at de.deutschepost.ubbrief.coma.core.ComaComponentImpl.getConnectionFromPool(ComaComponentImpl.java:163)
         at de.deutschepost.ubbrief.coma.core.ComaComponentImpl.getConnectionInternal(ComaComponentImpl.java:135)
         at de.deutschepost.ubbrief.coma.core.ComaComponentImpl.getConnection(ComaComponentImpl.java:99)
         at de.deutschepost.ubbrief.coma.persistence.customermanager.CurryCustomerManagerImpl.findCustomers(CurryCustomerManagerImpl.java:73)
         at de.deutschepost.ubbrief.coma.service.z2.ComaServiceProviderZ2BaseImpl.resolveCustomerInstances(ComaServiceProviderZ2BaseImpl.java:808)
         at de.deutschepost.ubbrief.coma.service.z2.ComaServiceProviderZ2Impl.getTaskList(ComaServiceProviderZ2Impl.java:213)
         at de.deutschepost.ubbrief.coma.service.z2.ComaServiceProviderZ2Bean_1dhrj7_EOImpl.getTaskList(ComaServiceProviderZ2Bean_1dhrj7_EOImpl.java:154)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList.runServiceMethod(CMPGetTaskList.java:64)
         at de.deutschepost.ubbrief.coma.sbbx.sp.BasicMethodProvider.execute(BasicMethodProvider.java:145)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl.execute(CMPGetTaskList_9b9mv5_EOImpl.java:46)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl_WLSkel.invoke(UnknownSource)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:159)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:263)
         at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:230)
         at de.deutschepost.ubbrief.coma.sbba.z2.CMPGetTaskList_9b9mv5_EOImpl_WLStub.execute(UnknownSource)
         at de.deutschepost.ubbrief.backbone.jazz.impl.core.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:115)
         at de.deutschepost.ubbrief.backbone.common.impl.core.rpc.server.ServerKernelImpl.handleTransportMessage(ServerKernelImpl.java:270)
         at de.deutschepost.ubbrief.backbone.common.impl.core.messaging.MessageTransport.handleMessage(MessageTransport.java:454)
         at de.deutschepost.ubbrief.backbone.common.impl.core.KernelFacade.handleMessage(KernelFacade.java:209)
         at de.deutschepost.ubbrief.backbone.jazz.impl.backbone.BackboneBean.messageArrived(BackboneBean.java:637)
         at de.deutschepost.ubbrief.backbone.jazz.impl.backbone.BackboneBean_ina9d7_ELOImpl.messageArrived(BackboneBean_ina9d7_ELOImpl.java:105)
         at de.deutschepost.ubbrief.backbone.jazz.impl.transport.receive.LocalQueueReceiveBean.deliverMessage(LocalQueueReceiveBean.java:43)
         at de.deutschepost.ubbrief.backbone.jazz.impl.transport.receive.AbstractMessageReceiveBean.onMessage(AbstractMessageReceiveBean.java:127)
         at weblogic.ejb20.internal.MDListener.execute(MDListener.java:377)
         at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:311)
         at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:286)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2351)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:2267)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:234)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:210)

  • How to expose JMX MBeans To Remote Clients ?

    Hi all,
    New to JMX...need some configuration guidance :)
    I'm trying to add a new JMX service - the will invoke an already existing service on my application...but I can't find a good example for exposing JMX MBeans to remote clients...
    I found this page http://wiki.jboss.org/wiki/en/JMXMBeanRemoteProxy?action=e&windowstate=normal&mode=view (fairly old...) but I'm not sure how to "create a proxy for the MBean and bind it under MyServiceInvokeTarget? JNDI name"
    Where can I find a good example for exposing app interface to JBoss JMX ?
    Thanks,
    Hadas
    Edited by: Hadas-David on May 28, 2008 7:36 AM

    I don't use JBoss, but because you have not received a reply yet, I'll throw some possible references out. You might try [Section 2.7|http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch2.chapter.html#ch2.remoteaccess.sect] ("Remote Access to Services, Detached Invokers") of the [JBoss 4 Application Server Guide|http://docs.jboss.org/jbossas/jboss4guide/r5/html/] (PDF) to get more information. I listed some additional references that a JBoss developer might want to check out in [another entry in this same forum|http://forum.java.sun.com/thread.jspa?threadID=5295861&tstart=0] as well as [still another entry in this forum|http://forum.java.sun.com/thread.jspa?threadID=5298128&tstart=0]. The [JBoss Wiki|http://wiki.jboss.org/wiki/] entry [JMX_Remoting_service_configuration|http://wiki.jboss.org/wiki/JMX_Remoting_service_configuration] looks like a potentially useful resource for using JMX on JBoss. Another entry on that same Wiki (JBossMX) states "JBoss MX supports version 1.2 of the JMX specification (JSR 003) since JBoss versions 3.2.5 and 4.0.0. *Support for the JMX Remote API (JSR 160) is under development*" (I added the bold emphasis). This last entry links to another entry ([Using the RMI Adaptor|http://wiki.jboss.org/wiki/UsingTheRMIAdaptor]) that might be exactly what you need.

  • License for using JMX Remote API  Reference Implementation

    Is JMX Remote API Reference Implementation open source one?
    Can we use JMX Remote API Reference Implementation with commercial products?

    Hi,
    I am not a lawyer.
    If you're referring to the JMX RI binary downloads available from here:
    http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/download.jsp
    then please click on the download button and then review the license agreement.
    You will see that this is not the GPL license.
    As such these downloads are not "open source".
    However the JMX API is also part of the OpenJDK project - and the OpenJDK project
    itself is open source. The OpenJDK project has a NetBeans IDE JMX project that will
    let you easily work with the JMX sources.
    See http://openjdk.java.net/groups/jmx/ for more details.
    You can review the OpenJDK license agreement and download the OpenJDK sources
    from http://openjdk.java.net/
    The OpenDMK Project contains an open source implementation of the JMXMP
    connector for the JMX API - which is the optional JMX connector defined in the
    JMX Remote API 1.0 specification. The JMXMP connector is not part of the OpenJDK
    project, but is open sourced by the OpenDMK project.
    You can review the OpenDMK license agreement and download the sources and
    binaries of the OpenDMK project from here:
    http://opendmk.dev.java.net/
    For an exact description of what you can or can't do with any of these various sources
    and binaries, please read the license agreements that come with each of them.
    I hope this helps,
    -- daniel
    http://blogs.sun.com/jmxetc

  • What's the relationship between Agent and JMX-instrumented applications?

    Hi, I'm a beginner of EM and JMX. I'm trying to integrate my application with EM. After reading some documents, I find I need to make my application JMX-instrumented first and then design the plug-in. But I'm still a little confused about the relationship between the Agent and the JMX-instrumented appliactions.
    Here is what I'm confused:
    1. Should the EM Agent be installed in the host where my JMX-instrumented application is installed? If this is true, then that will mean Agent cannot monitor the remote resource. But it sounds not reasonable.
    2. When making the application JMX-instrumented, we should use the platform MBeanServer or create our own MBeanServer? Do they have a major difference? and will it impact the plug-in design?
    Thanks in advance.

    Answers to your queries:
    1. Should the EM Agent be installed in the host where my JMX-instrumented application is installed? If this is true, then that will mean Agent cannot monitor the remote resource. But it sounds not reasonable.
    Its not necessary that EM Agent should be installed on the same host where JMX-instrumented application is/are installed. EM Agent has a fetchlet (named OJMX) that can be used. Refer to [Management Using Web Services and JMX|http://download.oracle.com/docs/cd/B19306_01/em.102/b16246/web_jmx.htm] for more details on emjmxcli tool, which can help to build the plug-in which can monitor the MBeans. [EM Extensibility Guide|http://download.oracle.com/docs/cd/B19306_01/em.102/b16246/toc.htm] contains all the details for building a plug-in.
    2. When making the application JMX-instrumented, we should use the platform MBeanServer or create our own MBeanServer? Do they have a major difference? and will it impact the plug-in design?
    To best of my knowledge, plug-in design doesn't get impacted

  • Replicating clobs and blobs in a remote database across dblink

    9iR2
    When creating a materialized view in a warehouse pointing to a remote table in an OLTP environment, I got this error when trying to replicate a table with 3 clobs.
    ORA-22992: cannot use LOB locators selected from remote tables
    So, how does Oracle recommend replicating Blobs and Clobs in a remote database/warehouse? Evidently using materialized views doesnt work.

    MV replication is obsolete.
    Move to 10gR2 and use Streams.

  • I have 3dparty software wirelessly with a cryptographic authentication system without my consent (seems to be new technology developed by stanford) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail break. Now what?

    I have 3rd party software wirelessly injected and used on my iphone with a cryptographic authentication system without my consent (seems to be new technology developed by stanford and apple security is not updated for this technology) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail breaking my phone, adding and removing software, changing settings all from a remotely controled device from different location (I have a Mac address I'd of this device to know for sure). Almost undetectable. When I look at the legal section of my phone it shows a list of all the unauthorized 3rd party software "as is" copyright encrypted on the phone.  This is the most basic way to legally steal software of any kind.  Because of this legalality 3rd party ownership have total control of certain software correlated with hardware use including visualization technology, etc.  most people luckily will never have this happen to them so it's unlikely many readers have not a clue of what I'm saying currently.  Either way, without needing to obtain specific warranty of any kind "as is" copyright control makes system restores not a solution because the source code is not directly encrypted on the actual hardware device only a copy right notice must appear on the specific device 3rd party software validation making it extremely difficult for me to take control of the situation. Apple claims their iOS technology prevents this type copyright obstruction from being possible, however, according to my phone a new form of technology was used developed by Tom wu of Stanford university called the STANFORD SRP AUTHENTICATION TECHNOLOGY which uses Some form of cryptographic authentication system and uses quote "secure remote password" which seems to suceed in hacking iOS apple technology apple claims is not possible to jailbreak an unstolen phone or without the owners consent As well as loading the device with 3rd party copyright Notices to make all of this legalized. My phone shows atleast 30 pages worth of legalized 3rd party copyright permissions! Yesterday my apple care provider labeled me a jailbreaker and refused to look at my legal documented proof which completely blew my mind because it voides my apple care contract I spent 100 on. This employee did not take all factors into consideration and made quick assumptions as well as verbally speaking to me as I'm an automatic criminal. I left the store yesterday with no payed insurance help on a problem I had no control over and couldn't prevent, leaving with voided contracts. This is an apple users worst nightmare and I have spent days researching all of this like i am some kind of lawyer only to be able to use my phone the way it should and spent alot of money on.  I can legally backup any claim I have just wrote above currently and have a large source of data collected to prove apple is wrong in voiding insurance support on this issue. The problem lies in apple avoiding and not wanting to believe their software can legally be obtained ot "hacked". Yet still labeled a jailbreaker basically.. What should I do????? Been to local apple store 3 times and rebooted my phone as well sprint service restore 4 times and spoke with reps twiice on the phone. Spoke with my phone provider who said apple has full control over these matters so they can't help me.  My case is according to apple "still open"...Anyone else heard of this or of Stanford's office of technology licensing? Maybe I need to buy a blackberry again or just use a landline so I can stop being my own lawyer and focus on other productive areas in life instead of this horrible mess. I shouldn't have to prove to apple I not a jailbreaker they should have to prove I'm one before voiding support I desperately need!!

    Mullaly75 wrote:
    I assume u guys don't understand what open source software is
    Yes, I think most of us do understand what open source software is. It sounds as if you don't. Here's some information:
    Open-source software (OSS) is computer software that is available in source code form: the source code and certain other rights normally reserved forcopyright holders are provided under an open-source license that permits users to study, change, improve and at times also to distribute the software.
    Open source software is very often developed in a public, collaborative manner. Open-source software is the most prominent example of open-sourcedevelopment and often compared to (technically defined) user-generated content or (legally defined) open content movements.
    from http://en.wikipedia.org/wiki/Open_source_software
    Yes, Tom Wu of Stanford wrote a paper on something called Secure Remote Access Protocol. It's a form of Asymetric Key Exchange and has nothing to do with hacking anything. It's actually intended to protect data.

  • Upgraded to Yosemite and can no longer remote into my work iMac through screen sharing- it is turned on in settings?

    My screen sharing functionality did not show up in the dock with an updated icon.  It had a question mark- shows my connections but nothing works, I did make sure screen sharing is on and also connected to VPN.  Once I tried to launch screen sharing nothing happens.  Such an elegant solution in Mavericks not does not work. Ugh. Help!

    This is the post that got me set up- I too am running an older version at work vs. Yosemite. As soon as I followed is advice everything worked.
    Upgraded to Yosemite and can no longer remote into my work iMac through screen sharing- it is turned on in settings?
    I believe the location of the "Screen Sharing" app has changed, which explains why if you had it in the dock it has been replaced by a ?
    Don't forget you can launch screen sharing (once your VPN connection is up) by typing in the Safari destination slot vnc://remotemachinename:portnumber  (omit the :port number if you are using the default VNC port, 5900).  This should launch Screen Sharing and put its icon in the dock.  You can drag the Screen Sharing icon to the left of your dock and it will hopefully remain there after you exit Screen Sharing, or you can right-click on the icon when it's running and select Options->Show in Finder to find out its new location and drag its icon to the permanent entries in your dock.
    Hope this helps; worked for me.

  • TS1741 I have lost the original remote for my Apple TV. I went to install it at my fiancés house, and cannot use the remote app on my ipad or iPhone. Can I still control the Apple TV with the apps?

    I have lost the original remote for my Apple TV. I went to install it at my fiancés house, and cannot use the remote app on my ipad or iPhone. Can I still control the Apple TV with the apps?

    Welcome to the Apple Community.
    Your Apple TV may have become paired with another remote. Hold the remote close to and pointed at the Apple TV, hold down the menu and Rewind buttons together for 6 seconds or until you see a broken chain icon on screen.

  • I have my boyfriend's apple ID and password, how do I check what apps he has on his phone? ( not all the apps that he had downloaded, but the ones that are actually on his phone). And How can I remotely download apps to his phone if I have his ID

    I have my boyfriend's apple ID and password, how do I check what apps he has on his phone? ( not all the apps that he had downloaded, but the ones that are actually on his phone). And How can I remotely download apps to his phone if I have his ID and PW?
    Thank you so much

    If you want seperate accounts for managing apps and purchasing content, basically yes, you need two account and would need to repurchase. However, if you just want seperate ID for iMessgae, icloud and such, you can do that and still continue sharing the same Id for apps and itunes.

  • Cluster with WLS 5.1 and WLS 8.1 servers?

    hi all,
    we are planning to upgrade our application running on WLS 5.1 to WLS 8.1. We
    have configuraed a WLS 5.1 cluster with 4 servers joining this cluster. What
    I'm now thinking of is: is it possible to run a WLS cluster that has 2
    Servers running on WLS 5.1 and another 2 servers running on WLS 8.1?
    Reason of thinking so, is that want to have the most failsafe configration
    as possible during our upgrade.
    I searched the BEA docs, but didn't find anything.
    any help would be fine.
    thanks
    Alexander

    You can have it but not for fail-safe configuration.
    It is not possible to have clusters with different
    WLS versions especially between 5.1 & 8.1
    Kumar
    Alexander von Alkier wrote:
    hi all,
    we are planning to upgrade our application running on WLS 5.1 to WLS 8.1. We
    have configuraed a WLS 5.1 cluster with 4 servers joining this cluster. What
    I'm now thinking of is: is it possible to run a WLS cluster that has 2
    Servers running on WLS 5.1 and another 2 servers running on WLS 8.1?
    Reason of thinking so, is that want to have the most failsafe configration
    as possible during our upgrade.
    I searched the BEA docs, but didn't find anything.
    any help would be fine.
    thanks
    Alexander

  • My iPhone 4s was stolen this weekend and I did the Remote Lock.  What exactly does that do?  Also, if i do the Remote Wipe will that erase all of my data and impede anyone from ever using the phone?

    My iPhone 4s was stolen this weekend and I did the Remote Lock.  What exactly does that do?  Also, if i do the Remote Wipe will that erase all of my data and impede anyone from ever using the phone?

    The remote lock locks the iphone with a passcode that you set. By remote wiping the device it will simply restore it and clear it of all its data, but by doing this it will prevent you tracking it and communicating with it (e.g. remote locking it) in the future

  • WLS 8.1SP2 and AIX 5.1.0.0

    After installing WLS 8.1 and the AIX supplement patch plus fixes to java1.4
    I am still unable to bring up my server. The following error occurs:
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://[hostname]:[port]/console *
    <May 5, 2004 1:29:26 PM MDT> <Info> <WebLogicServer> <BEA-000377> <Starting
    WebLogic Server with Classic VM Version 1.4.1 from IBM Corporation>
    <May 5, 2004 1:29:28 PM MDT> <Info> <Configuration Management> <BEA-150016>
    <This server is being started as the administration server.>
    <May 5, 2004 1:29:28 PM MDT> <Info> <Management> <BEA-141107> <Version:
    WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284WebLogic XMLX
    Module 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284 >
    <May 5, 2004 1:29:30 PM MDT> <Notice> <Management> <BEA-140005> <Loading
    domainconfiguration from configuration repository at
    /users/interop8/bea/user_projects/domain/hooxsgb/./config.xml.>
    <May 5, 2004 1:29:49 PM MDT> <Notice> <Log Management> <BEA-170019> <The
    serverlog file
    /users/interop8/bea/user_projects/domain/hooxsgb/myserver/myserver.logis
    opened. All server side log events will be written to this file.>
    <May 5, 2004 1:30:08 PM MDT> <Notice> <Security> <BEA-090082> <Security
    initializing using security realm myrealm.>
    <May 5, 2004 1:30:09 PM MDT> <Notice> <WebLogicServer> <BEA-000327>
    <Starting WebLogic Admin Server "myserver" for domain "hooxsgb">
    JVMDG217: Dump Handler is Processing a Signal - Please Wait.
    JVMDG303: JVM Requesting Java core file
    JVMDG304: Java core file written to
    /users/interop8/bea/user_projects/domain/hooxsgb/javacore37624.1083785465.tx
    t
    JVMDG215: Dump Handler has Processed Exception Signal 11.
    System Information for dixie
    MODEL Bull ESCALA T (e8ED)
    CPU 4 x K45, 32 bits (360.0 MH) ** 4 enabled **
    MEM 2304 MB real memory
    FIRM 03.03.09
    OS AIX 5.1.0.0 [Fix level 58] [Maintenance level 05]
    KERN System currently booted on 32 bits kernel
    Attached is the Java core file
    Any ideas?
    Eric
    [javacore37624.1083785465.txt]

    BEA currently supports AIX 5.1 ML-4. Your configuration is ML-5.
    Eric Hardesty wrote:
    After installing WLS 8.1 and the AIX supplement patch plus fixes to java1.4
    I am still unable to bring up my server. The following error occurs:
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://[hostname]:[port]/console *
    <May 5, 2004 1:29:26 PM MDT> <Info> <WebLogicServer> <BEA-000377> <Starting
    WebLogic Server with Classic VM Version 1.4.1 from IBM Corporation>
    <May 5, 2004 1:29:28 PM MDT> <Info> <Configuration Management> <BEA-150016>
    <This server is being started as the administration server.>
    <May 5, 2004 1:29:28 PM MDT> <Info> <Management> <BEA-141107> <Version:
    WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284WebLogic XMLX
    Module 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284 >
    <May 5, 2004 1:29:30 PM MDT> <Notice> <Management> <BEA-140005> <Loading
    domainconfiguration from configuration repository at
    /users/interop8/bea/user_projects/domain/hooxsgb/./config.xml.>
    <May 5, 2004 1:29:49 PM MDT> <Notice> <Log Management> <BEA-170019> <The
    serverlog file
    /users/interop8/bea/user_projects/domain/hooxsgb/myserver/myserver.logis
    opened. All server side log events will be written to this file.>
    <May 5, 2004 1:30:08 PM MDT> <Notice> <Security> <BEA-090082> <Security
    initializing using security realm myrealm.>
    <May 5, 2004 1:30:09 PM MDT> <Notice> <WebLogicServer> <BEA-000327>
    <Starting WebLogic Admin Server "myserver" for domain "hooxsgb">
    JVMDG217: Dump Handler is Processing a Signal - Please Wait.
    JVMDG303: JVM Requesting Java core file
    JVMDG304: Java core file written to
    /users/interop8/bea/user_projects/domain/hooxsgb/javacore37624.1083785465.tx
    t
    JVMDG215: Dump Handler has Processed Exception Signal 11.
    System Information for dixie
    MODEL Bull ESCALA T (e8ED)
    CPU 4 x K45, 32 bits (360.0 MH) ** 4 enabled **
    MEM 2304 MB real memory
    FIRM 03.03.09
    OS AIX 5.1.0.0 [Fix level 58] [Maintenance level 05]
    KERN System currently booted on 32 bits kernel
    Attached is the Java core file
    Any ideas?
    Eric
    NULL ------------------------------------------------------------------------
    0SECTION TITLE subcomponent dump routine
    NULL ===============================
    1TISIGINFO signal 11 received
    1TIDATETIME Date: 2004/05/05 at 12:31:05
    1TIFILENAME Javacore filename: /users/interop8/bea/user_projects/domain/hooxsgb/javacore37624.1083785465.txt
    NULL ------------------------------------------------------------------------
    0SECTION XHPI subcomponent dump routine
    NULL ==============================
    1XHTIME Wed May 5 12:31:05 2004
    1XHSIGRECV SIGSEGV received at 0xd3a96f54 in /usr/java14/jre/bin/classic/libjvm.a. Processing terminated.
    1XHFULLVERSION J2RE 1.4.1 IBM AIX build ca1411-20030930
    NULL
    1XHCURRENTTHD Current Thread Details
    NULL ----------------------
    2XHCURRSYSTHD "ListenThread.Default" sys_thread_t:0x41C0F228
    3XHNATIVESTACK Native Stack
    NULL ------------
    3XHSTACKLINE at 0xD46194CC in Java_weblogic_socket_PosixSocketMuxer_initNative
    3XHSTACKLINE at 0xD3A96F54 in mmipInvoke_V_V
    3XHSTACKLINE at 0xD3A909B0 in mmipInvokeLazyJniMethod
    3XHSTACKLINE at 0xD3A5CBD8 in mmipExecuteJava
    3XHSTACKLINE at 0xD3A54BBC in xeRunJvmMethod
    3XHSTACKLINE at 0xD3A47628 in JVM_NewInstanceFromConstructor
    3XHSTACKLINE at 0xD3C5658C in Java_sun_reflect_NativeConstructorAccessorImpl_newInstance0
    3XHSTACKLINE at 0xD3A9641C in mmipInvoke_OO_O
    3XHSTACKLINE at 0xD3A5CBD8 in mmipExecuteJava
    3XHSTACKLINE at 0xD3BBCDF8 in mmijExecuteJavaFromJIT
    3XHSTACKLINE at 0xD3C8AC90 in jit_init_memory_locks_md
    NULL
    1XHOPENV Operating Environment
    NULL ---------------------
    2XHHOSTNAME Host : dixie.gpv.az05.bull.com:141.112.17.150
    2XHOSLEVEL OS Level : AIX 5.1.0.0
    2XHCPUS Processors -
    3XHCPUARCH Architecture : POWER_PC (impl: POWER_604, ver: PV_604)
    3XHNUMCPUS How Many : 4
    3XHCPUSENABLED Enabled : 4
    NULL
    1XHUSERLIMITS User Limits (in bytes except for NOFILE and NPROC) -
    NULL -----------
    2XHUSERLIMIT RLIMIT_FSIZE : infinity
    2XHUSERLIMIT RLIMIT_DATA : 2147483645
    2XHUSERLIMIT RLIMIT_STACK : 33554432
    2XHUSERLIMIT RLIMIT_CORE : 1073741312
    2XHUSERLIMIT RLIMIT_NOFILE : infinity
    2XHLIMIT NPROC(max) : 4000
    NULL
    1XHPAGESPACES Page Space (in blocks) -
    NULL ----------
    2XHPAGESPACE /dev/hd6: size=200704, free=199709
    2XHPAGESPACE /dev/paging00: size=196608, free=196495
    2XHPAGESPACE /dev/paging01: size=196608, free=196495
    NULL
    1XHSIGHANDLERS JVM Signal Handlers
    NULL -------------------
    2XHSIGHANDLER SIGHUP : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHSIGHANDLERS Chained Signal Handlers
    NULL -----------------------
    2XHSIGHANDLER SIGHUP : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHENVVARS Environment Variables
    NULL ---------------------
    2XHENVVAR _=/usr/java14/bin/java
    2XHENVVAR JAVA_VENDOR=IBM
    2XHENVVAR LANG=en_US
    2XHENVVAR TMOUT2=43200
    2XHENVVAR PRODUCTION_MODE=
    2XHENVVAR LOGIN=interop8
    2XHENVVAR CLASSPATHSEP=:
    2XHENVVAR PAGER=more
    2XHENVVAR POINTBASE_HOME=/users/interop8/bea/weblogic81/common/eval/pointbase
    2XHENVVAR PATH=/users/interop8/bea/weblogic81/server/bin:/usr/java14/jre/bin:/usr/java14/bin:/users/interop8/GCOSInterop/dsad/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin::/app/oracle/product/8.1.7/bin:/usr/local/bin:/usr/lbin:/users/interop8/jte/bin
    2XHENVVAR RES_RETRY=1
    2XHENVVAR JTE_BASE=/users/interop8/jte
    2XHENVVAR JAVA_VM=
    2XHENVVAR LC__FASTMSG=true
    2XHENVVAR POINTBASE_CLASSPATH=:/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar
    2XHENVVAR CGI_DIRECTORY=/var/docsearch/cgi-bin
    2XHENVVAR EDITOR=vi
    2XHENVVAR EXINIT=set tabstop=4
    2XHENVVAR HISTFILE=/users/interop8/.sh_history
    2XHENVVAR CLASSPATH=/usr/java14/lib/tools.jar:/users/interop8/bea/weblogic81/server/lib/weblogic_sp.jar:/users/interop8/bea/weblogic81/server/lib/weblogic.jar:/users/interop8/bea/weblogic81/server/lib/ojdbc14.jar::/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/users/interop8/bea/weblogic81/server/lib/webservices.jar:
    2XHENVVAR LOGNAME=interop8
    2XHENVVAR RES_TIMEOUT=2
    2XHENVVAR MAIL=/usr/spool/mail/interop8
    2XHENVVAR ETC_PROFILE=1
    2XHENVVAR POINTBASE_TOOLS=/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbtools44.jar
    2XHENVVAR LOCPATH=/usr/lib/nls/loc
    2XHENVVAR ORACLE_SID=demo
    2XHENVVAR PS1=[dixie] (interop8).${PWD#${HOME}}>
    2XHENVVAR PATHSEP=:
    2XHENVVAR USER=interop8
    2XHENVVAR DOCUMENT_SERVER_MACHINE_NAME=localhost
    2XHENVVAR AUTHSTATE=compat
    2XHENVVAR BEA_HOME=/users/interop8/bea
    2XHENVVAR DEFAULT_BROWSER=netscape
    2XHENVVAR DISPLAY=harp.gpv.az05.bull.com:0
    2XHENVVAR SHELL=/bin/ksh
    2XHENVVAR ODMDIR=/etc/objrepos
    2XHENVVAR JAVA_HOME=/usr/java14
    2XHENVVAR DOCUMENT_SERVER_PORT=49213
    2XHENVVAR TMOUT=43200
    2XHENVVAR HOME=/users/interop8
    2XHENVVAR MEM_ARGS=-Xms32m -Xmx200m
    2XHENVVAR WEBLOGIC_CLASSPATH=/usr/java14/lib/tools.jar:/users/interop8/bea/weblogic81/server/lib/weblogic_sp.jar:/users/interop8/bea/weblogic81/server/lib/weblogic.jar:/users/interop8/bea/weblogic81/server/lib/ojdbc14.jar
    2XHENVVAR TERM=vt220
    2XHENVVAR MAILMSG=[YOU HAVE NEW MAIL]
    2XHENVVAR ORACLE_HOME=/app/oracle/product/8.1.7
    2XHENVVAR ITECONFIGSRV=/etc/IMNSearch
    2XHENVVAR PWD=/users/interop8/bea/user_projects/domain/hooxsgb
    2XHENVVAR DOCUMENT_DIRECTORY=/usr/docsearch/html
    2XHENVVAR TZ=MST7
    2XHENVVAR ITECONFIGCL=/etc/IMNSearch/clients
    2XHENVVAR WL_HOME=/users/interop8/bea/weblogic81
    2XHENVVAR ITE_DOC_SEARCH_INSTANCE=search
    2XHENVVAR A__z=! TMOUT2=! LOGNAME=! ETC_PROFILE="*TMOUT
    2XHENVVAR _IBM_JAVA_PIPE_37624=
    2XHENVVAR IBM_JVM_AIXTHREAD_SCOPE_OLD_VALUE=
    2XHENVVAR IBM_JVM_AIXTHREAD_SCOPE_NEW_VALUE=S
    2XHENVVAR AIXTHREAD_SCOPE=S
    2XHENVVAR IBM_JVM_CHANGED_ENVVARS_37624=AIXTHREAD_SCOPE,LDR_CNTRL
    2XHENVVAR IBM_JVM_LDR_CNTRL_OLD_VALUE=
    2XHENVVAR IBM_JVM_LDR_CNTRL_NEW_VALUE=MAXDATA=0x80000000
    2XHENVVAR LDR_CNTRL=MAXDATA=0x80000000
    2XHENVVAR LIBPATH=/usr/java14/jre/bin:/usr/java14/jre/bin/classic:/usr/java14/jre/bin:/app/oracle/product/8.1.7}/lib:/users/interop8/bea/weblogic81/server/lib/aix
    2XHENVVAR NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat:/opt/Xprint/MSG/%l/%N:/opt/Xprint/mercator/MSG/%l/%N:/var/spool/Xprint/config/MSG/%l/%N:/var/spool/Xprint/config/mercator/MSG/%l/%N
    2XHENVVAR _IBM_ENV_INITIAL_37624=807444056
    2XHENVVAR IBM_JAVA_COMMAND_LINE=/usr/java14/bin/java -Xms32m -Xmx200m -Dweblogic.Name=myserver -Dweblogic.ProductionModeEnabled= -Djava..security.policy=/users/interop8/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    NULL
    1XHLOADEDLIBS Loaded Libraries (sizes in bytes)
    NULL ---------------------------------
    2XHLIBNAME /users/interop8/bea/weblogic81/server/lib/aix/libmuxer.so
    3XHLIBSIZE filesize : 20757
    3XHLIBSTART text start : 0xD4618000
    3XHLIBLDSIZE text size : 0x282E
    3XHLIBLDORG data start : 0x41E97CF4
    3XHLIBLDDATASZ data size : 0x2AC
    2XHLIBNAME /usr/java14/jre/bin/libnio.a
    3XHLIBSIZE filesize : 61140
    3XHLIBSTART text start : 0xD460F000
    3XHLIBLDSIZE text size : 0x8925
    3XHLIBLDORG data start : 0x408A5598
    3XHLIBLDDATASZ data size : 0x50C
    2XHLIBNAME /usr/java14/jre/bin/libnet.a
    3XHLIBSIZE filesize : 122155
    3XHLIBSTART text start : 0xD45F9000
    3XHLIBLDSIZE text size : 0x1437A
    3XHLIBLDORG data start : 0x3F592990
    3XHLIBLDDATASZ data size : 0x820
    2XHLIBNAME /usr/java14/jre/bin/libjitc.a
    3XHLIBSIZE filesize : 2760315
    3XHLIBSTART text start : 0xD3C7D000
    3XHLIBLDSIZE text size : 0x2330F6
    3XHLIBLDORG data start : 0x3E055F40
    3XHLIBLDDATASZ data size : 0x1A8A4
    2XHLIBNAME /usr/lib/libi18n.a
    3XHLIBSIZE filesize : 148825
    3XHLIBSTART text start : 0xD007A100
    3XHLIBLDSIZE text size : 0xA1AE
    3XHLIBLDORG data start : 0x3DFF2A18
    3XHLIBLDDATASZ data size : 0x1290
    2XHLIBNAME /usr/lib/nls/loc/en_US
    3XHLIBSIZE filesize : 14342
    3XHLIBSTART text start : 0xD0074000
    3XHLIBLDSIZE text size : 0x2D71
    3XHLIBLDORG data start : 0xD0077130
    3XHLIBLDDATASZ data size : 0x2324
    2XHLIBNAME /usr/java14/jre/bin/libzip.a
    3XHLIBSIZE filesize : 109272
    3XHLIBSTART text start : 0xD3C69000
    3XHLIBLDSIZE text size : 0x1349A
    3XHLIBLDORG data start : 0x3D80F398
    3XHLIBLDDATASZ data size : 0x1908
    2XHLIBNAME /usr/java14/jre/bin/classic/libcore.a
    3XHLIBSIZE filesize : 172361
    3XHLIBSTART text start : 0xD3C4E000
    3XHLIBLDSIZE text size : 0x1AE66
    3XHLIBLDORG data start : 0x3D801610
    3XHLIBLDDATASZ data size : 0xD934
    2XHLIBNAME /usr/java14/jre/bin/libhpi.a
    3XHLIBSIZE filesize : 159668
    3XHLIBSTART text start : 0xD3C36000
    3XHLIBLDSIZE text size : 0x17708
    3XHLIBLDORG data start : 0x3025DCC8
    3XHLIBLDDATASZ data size : 0x1420
    2XHLIBNAME /usr/java14/jre/bin/libxhpi.a
    3XHLIBSIZE filesize : 44366
    3XHLIBSTART text start : 0xD3C2F000
    3XHLIBLDSIZE text size : 0x6578
    3XHLIBLDORG data start : 0x3024E058
    3XHLIBLDDATASZ data size : 0xE51C
    2XHLIBNAME /usr/lib/libdl.a
    3XHLIBSIZE filesize : 5248
    3XHLIBSTART text start : 0xD070D0F8
    3XHLIBLDSIZE text size : 0x1E0
    3XHLIBLDORG data start : 0x3024D0F8
    3XHLIBLDDATASZ data size : 0x0
    2XHLIBNAME /usr/java14/jre/bin/libjsig.a
    3XHLIBSIZE filesize : 13751
    3XHLIBSTART text start : 0xD3C2D000
    3XHLIBLDSIZE text size : 0x1B6E
    3XHLIBLDORG data start : 0x3024C2F8
    3XHLIBLDDATASZ data size : 0x1D0
    2XHLIBNAME /usr/java14/jre/bin/libjava.a
    3XHLIBSIZE filesize : 197639
    3XHLIBSTART text start : 0xD3C10000
    3XHLIBLDSIZE text size : 0x1CE78
    3XHLIBLDORG data start : 0x30239690
    3XHLIBLDDATASZ data size : 0x132C
    2XHLIBNAME /usr/java14/jre/bin/classic/libjvm.a
    3XHLIBSIZE filesize : 2698157
    3XHLIBSTART text start : 0xD3A28000
    3XHLIBLDSIZE text size : 0x1E71F8
    3XHLIBLDORG data start : 0x302111E0
    3XHLIBLDDATASZ data size : 0x27BE4
    2XHLIBNAME /usr/lib/libiconv.a
    3XHLIBSIZE filesize : 377974
    3XHLIBSTART text start : 0xD0085100
    3XHLIBLDSIZE text size : 0x1403A
    3XHLIBLDORG data start : 0xF0317ED0
    3XHLIBLDDATASZ data size : 0xA544
    2XHLIBNAME /usr/lib/libbsd.a
    3XHLIBSIZE filesize : 63178
    3XHLIBSTART text start : 0xD01504C0
    3XHLIBLDSIZE text size : 0x8183
    3XHLIBLDORG data start : 0xF0169FB0
    3XHLIBLDDATASZ data size : 0x1350
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 912571
    3XHLIBSTART text start : 0xD0047000
    3XHLIBLDSIZE text size : 0x2B5BD
    3XHLIBLDORG data start : 0xF0139000
    3XHLIBLDDATASZ data size : 0x5020
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 912571
    3XHLIBSTART text start : 0xD0043000
    3XHLIBLDSIZE text size : 0x38B1
    3XHLIBLDORG data start : 0xF00D6000
    3XHLIBLDDATASZ data size : 0x62318
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 6961880
    3XHLIBSTART text start : 0xD0521560
    3XHLIBLDSIZE text size : 0x1F983
    3XHLIBLDORG data start : 0xF01E9560
    3XHLIBLDDATASZ data size : 0x6578
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 6961880
    3XHLIBSTART text start : 0xD0507E20
    3XHLIBLDSIZE text size : 0x1846B
    3XHLIBLDORG data start : 0xF01DFE20
    3XHLIBLDDATASZ data size : 0x8511
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 6961880
    3XHLIBSTART text start : 0xD04E7100
    3XHLIBLDSIZE text size : 0x1F75A
    3XHLIBLDORG data start : 0xF01DB700
    3XHLIBLDDATASZ data size : 0x3019
    2XHLIBNAME /usr/lib/libcrypt.a
    3XHLIBSIZE filesize : 11059
    3XHLIBSTART text start : 0xD00730F8
    3XHLIBLDSIZE text size : 0x86E
    3XHLIBLDORG data start : 0xF00D5530
    3XHLIBLDDATASZ data size : 0x128
    2XHLIBNAME /usr/lib/libc.a
    3XHLIBSIZE filesize : 6806102
    3XHLIBSTART text start : 0xD01D5640
    3XHLIBLDSIZE text size : 0x1FDB9F
    3XHLIBLDORG data start : 0xF0042520
    3XHLIBLDDATASZ data size : 0x91B58
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION CI subcomponent dump routine
    NULL ============================
    1CIJAVAVERSION J2RE 1.4.1 IBM AIX build ca1411-20030930
    1CIRUNNINGAS Running as a standalone JVM
    1CICMDLINE /usr/java14/bin/java -Xms32m -Xmx200m -Dweblogic.Name=myserver -Dweblogic.ProductionModeEnabled= -Djava.security.policy=/users/interop8/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    1CIJAVAHOMEDIR Java Home Dir: /usr/java14/jre
    1CIJAVADLLDIR Java DLL Dir: /usr/java14/jre/bin
    1CISYSCP Sys Classpath: /usr/java14/jre/lib/core.jar:/usr/java14/jre/lib/graphics.jar:/usr/java14/jre/lib/security.jar:/usr/java14/jre/lib/server.jar:/usr/java14/jre/lib/xml.jar:/usr/java14/jre/lib/charsets.jar:/usr/java14/jre/classes
    1CIUSERARGS UserArgs:
    2CIUSERARG vfprintf 0x30000B94
    2CIUSERARG -Xms32m
    2CIUSERARG -Xmx200m
    2CIUSERARG -Dweblogic.Name=myserver
    2CIUSERARG -Dweblogic.ProductionModeEnabled=
    2CIUSERARG -Djava.security.policy=/users/interop8/bea/weblogic81/server/lib/weblogic.policy
    2CIUSERARG -Dinvokedviajava
    2CIUSERARG -Djava.class.path=/usr/java14/lib/tools.jar:/users/interop8/bea/weblogic81/server/lib/weblogic_sp.jar:/users/interop8/bea/weblogic81/server/lib/weblogic.jar:/users/interop8/bea/weblogic81/server/lib/ojdbc14.jar::/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/users/interop8/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/users/interop8/bea/weblogic81/server/lib/webservices.jar:
    2CIUSERARG vfprintf
    NULL
    1CIJVMMI JVM Monitoring Interface (JVMMI)
    NULL ------------------------
    2CIJVMMIOFF No events are enabled.
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION DC subcomponent dump routine
    NULL ============================
    1DCHEADEREYE Header eye catcher DCST
    1DCHEADERLEN Header length 24
    1DCHEADERVER Header version 1
    1DCHEADERMOD Header modification 0
    1DCINTERFACE DC Interface at 0x3022270C with 15 entries
    2DCINTERFACE 1 - dcCString2JavaString 0x3021EA7C
    2DCINTERFACE 2 - dcInt642CString 0x3021EA88
    2DCINTERFACE 3 - dcJavaString2NewCString 0x3021EA94
    2DCINTERFACE 4 - dcJavaString2CString 0x3021EAA0
    2DCINTERFACE 5 - dcJavaString2NewPlatformString 0x3021EAAC
    2DCINTERFACE 6 - dcJavaString2UTF 0x3021EAB8
    2DCINTERFACE 7 - dcPlatformString2JavaString 0x3021EAD0
    2DCINTERFACE 8 - dcUnicode2UTF 0x3021EADC
    2DCINTERFACE 9 - dcUnicode2UTFLength 0x3021EAE8
    2DCINTERFACE 10 - dcUTF2JavaString 0x3021EAF4
    2DCINTERFACE 11 - dcUTFClassName2JavaString 0x3021EB00
    2DCINTERFACE 12 - dcJavaString2ClassName 0x3021EAC4
    2DCINTERFACE 13 - dcUTF2UnicodeNext 0x3021EB0C
    2DCINTERFACE 14 - dcVerifyUTF8 0x3021EB18
    2DCINTERFACE 15 - dcDumpRoutine 0x3021EB24
    1DCARRAYINFO Array info at 0x302131B8 with 16 entries
    2DCARRAYINFO 1 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 2 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 3 - index 2 signature L name class[] factor 4
    2DCARRAYINFO 4 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 5 - index 4 signature Z name bool[] factor 1
    2DCARRAYINFO 6 - index 5 signature C name char[] factor 2
    2DCARRAYINFO 7 - index 6 signature F name float[] factor 4
    2DCARRAYINFO 8 - index 7 signature D name double[] factor 8
    2DCARRAYINFO 9 - index 8 signature B name byte[] factor 1
    2DCARRAYINFO 10 - index 9 signature S name short[] factor 2
    2DCARRAYINFO 11 - index 10 signature I name int[] factor 4
    2DCARRAYINFO 12 - index 11 signature J name long[] factor 8
    2DCARRAYINFO 13 - index 0 signature 0 name uint[] factor 0
    2DCARRAYINFO 14 - index 0 signature 0 name uint1[] factor 0
    2DCARRAYINFO 15 - index 0 signature 0 name uint2[] factor 0
    2DCARRAYINFO 16 - index 0 signature 0 name uint3[] factor 0
    NULL ------------------------------------------------------------------------
    0SECTION DG subcomponent dump routine
    NULL ============================
    1DGTRCENABLED Trace enabled: No
    1DGJDUMPBUFF Javadump buffer size (allocated): 2621440
    NULL ------------------------------------------------------------------------
    0SECTION ST subcomponent dump routine
    NULL ============================
    1STGCMODES Resettable GC: No
    1STGCMODES Concurrent GC: No
    1STCURHBASE Current Heap Base: 302801fc
    1STCURHLIM Current Heap Limit: 3281fbfc
    1STMWHBASE Middleware Heap Base: 302801fc
    1STMWHLIM Middleware Heap Limit: 3281fbfc
    1STGCHELPERS Number of GC Helper Threads: 3
    1STJVMOPTS -Xconcurrentlevel: 0
    1STJVMOPTS -Xconcurrentbackground: 0
    1STGCCTR GC Counter: 7
    1STAFCTR AF Counter: 7
    1STHEAPFREE Bytes of Heap Space Free: 80db00
    1STHEAPALLOC Bytes of Heap Space Allocated: 259fa00
    1STSMBASE SM Base: 0
    1STSMEND SM End: 0
    1STPAMSTART PAM Start: 0
    1STPAMEND PAM End: 0
    1STCOMACTION Compact Action: 0
    NULL ------------------------------------------------------------------------
    0SECTION XE subcomponent dump routine
    NULL ============================
    1XETHRESHOLD MMI threshold for java methods is set to 1250
    1XEJITINIT JIT is initialized
    1XEJVMPIOFF JVMPI is not activated
    1XEJNITHRESH MMI threshold for JNI methods is set to 0
    1XETRCHIS Trace history length is set to 4
    1XEJITDUMP JIT dump routine is not yet implemented.
    NULL ------------------------------------------------------------------------
    0SECTION LK subcomponent dump routine
    NULL ============================
    NULL
    1LKPOOLINFO Monitor pool info:
    2LKPOOLINIT Initial monitor count: 32
    2LKPOOLEXPNUM Minimum number of free monitors before expansion: 5
    2LKPOOLEXPBY Pool will next be expanded by: 24
    2LKPOOLTOTAL Current total number of monitors: 48
    2LKPOOLFREE Current number of free monitors: 9
    NULL
    1LKMONPOOLDUMP Monitor Pool Dump (flat & inflated object-monitors):
    2LKMONINUSE sys_mon_t:0x3020EE28 infl_mon_t: 0x3020E918:
    3LKMONOBJECT java.lang.ref.Reference$Lock@303017F0/303017F8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Reference Handler" (0x3D9C6A28)
    2LKMONINUSE sys_mon_t:0x3020EED8 infl_mon_t: 0x3020E940:
    3LKMONOBJECT java.lang.ref.ReferenceQueue$Lock@30301528/30301530: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Finalizer" (0x3DA50CA8)
    2LKMONINUSE sys_mon_t:0x3020EF88 infl_mon_t: 0x3020E968:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9830/302E9838: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.kernel.Default'" (0x3EDB86A8)
    2LKMONINUSE sys_mon_t:0x3020F038 infl_mon_t: 0x3020E990:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9798/302E97A0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" (0x3EDB8D28)
    2LKMONINUSE sys_mon_t:0x3020F0E8 infl_mon_t: 0x3020E9B8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9700/302E9708: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.Default'" (0x3EDC2528)
    2LKMONINUSE sys_mon_t:0x3020F198 infl_mon_t: 0x3020E9E0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9668/302E9670: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" (0x3EDD1EA8)
    2LKMONINUSE sys_mon_t:0x3020F248 infl_mon_t: 0x3020EA08:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E95D0/302E95D8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '4' for queue: 'weblogic.kernel.Default'" (0x3EDD4528)
    2LKMONINUSE sys_mon_t:0x3020F2F8 infl_mon_t: 0x3020EA30:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9538/302E9540: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '5' for queue: 'weblogic.kernel.Default'" (0x3EDD98A8)
    2LKMONINUSE sys_mon_t:0x3020F3A8 infl_mon_t: 0x3020EA58:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E94A0/302E94A8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '6' for queue: 'weblogic.kernel.Default'" (0x3EDDCF28)
    2LKMONINUSE sys_mon_t:0x3020F458 infl_mon_t: 0x3020EA80:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9408/302E9410: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '7' for queue: 'weblogic.kernel.Default'" (0x3EDE0528)
    2LKMONINUSE sys_mon_t:0x3020F508 infl_mon_t: 0x3020EAA8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9370/302E9378: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '8' for queue: 'weblogic.kernel.Default'" (0x3EDE2BA8)
    2LKMONINUSE sys_mon_t:0x3020F5B8 infl_mon_t: 0x3020EAD0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E92D8/302E92E0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" (0x3EDE8428)
    2LKMONINUSE sys_mon_t:0x3020F668 infl_mon_t: 0x3020EAF8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9240/302E9248: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" (0x3EDE8A28)
    2LKMONINUSE sys_mon_t:0x3020F718 infl_mon_t: 0x3020EB20:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E91A8/302E91B0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" (0x3EDF5E28)
    2LKMONINUSE sys_mon_t:0x3020F7C8 infl_mon_t: 0x3020EB48:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9110/302E9118: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '12' for queue: 'weblogic.kernel.Default'" (0x3EDF94A8)
    2LKMONINUSE sys_mon_t:0x3020F878 infl_mon_t: 0x3020EB70:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E9078/302E9080: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" (0x3EDFCAA8)
    2LKMONINUSE sys_mon_t:0x3020F928 infl_mon_t: 0x3020EB98:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E8FE0/302E8FE8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" (0x3EE000A8)
    2LKMONINUSE sys_mon_t:0x3020F9D8 infl_mon_t: 0x3020EBC0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E8F48/302E8F50: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.kernel.System'" (0x3EE03728)
    2LKMONINUSE sys_mon_t:0x3020FA88 infl_mon_t: 0x3020EBE8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E8EB0/302E8EB8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" (0x3EE06D28)
    2LKMONINUSE sys_mon_t:0x3020FB38 infl_mon_t: 0x3020EC10:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@302E8E18/302E8E20: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" (0x3EE0A328)
    2LKMONINUSE sys_mon_t:0x3020FBE8 infl_mon_t: 0x3020EC38:
    3LKMON

Maybe you are looking for