Weblogic problem,weblogic.rmi.extensions.RemoteRuntimeException: Unexpected

hello,everyone.
I have a problem.please help me.
My application is running on weblogic 9.2. My oracle is oracle10g. system:linux redhat4.
my weblogic's log have a problem.
java.sql.SQLException: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception
at weblogic.jdbc.rmi.SerialStatement.close(SerialStatement.java:109)
at com.goldpalm.common.jdbc.DBController.releaseConn(DBController.java:273)
at com.goldpalm.sale.team.TeamXml.exeTeamLog(TeamXml.java:762)
at jsp_servlet._ctssale.__teamline_show._jspService(__teamline_show.java:264)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:230)
at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at filters.AuthFilter.doFilter(AuthFilter.java:95)
at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3200)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1983)
at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1844)
at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1344)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)

Hi
Looking at the error stack trace, you are getting this error when trying to close the statement object from your own java code (not weblogic code...) - DBController.releaseConn(...)
at com.goldpalm.common.jdbc.DBController.releaseConn(DBController.java:273)
java.sql.SQLException: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception
at weblogic.jdbc.rmi.SerialStatement.close(SerialStatement.java:109)
at com.goldpalm.common.jdbc.DBController.releaseConn(DBController.java:273)
at com.goldpalm.sale.team.TeamXml.exeTeamLog(TeamXml.java:762)
Well check the code you have at this location. Usually the way we release/close the db resources are like first close ResultSet, then Statement, then Connection. But if you close connection first, then try to close the Statement object, it throws errors like what you see.
I am giving 2 methods code snippet. One method is caleld like closeAll(..). This method gets called in finally block of all other db methods that does the actual db code to connect and get data etc etc.
// Sample main method that does all db stuff...This is just code snippet only and NOT the full code. Focus on try catch finally block
public static void getCustomerProfile(long custId) throws Exception {
     Connection aConnection = getConnection();
     CallableStatement aCallableStatement = null;
     ResultSet aResultSet = null;
     try {
          aCallableStatement = aConnection.prepareCall("{ call someFunction(?, ?) }");
          aCallableStatement.execute();
          aResultSet = (ResultSet) aCallableStatement.getObject("variable_name_from_sp");
          while(aResultSet.next()) {
               // get all data for each record etc...
     } catch (Exception e) {
          e.printStackTrace();
          throw e;
     } finally {
          closeAll(aConnection, aCallableStatement, aResultSet);
// While closing RS, Statment, Connection, enclose them in their own try/catch block and ofcourse check for nulls first
public static void closeAll(Connection aConn, Statement aStmt, ResultSet aRS) {
     if (aRS != null) {
          try {
               aRS.close();
          } catch (Exception e) {
               System.out.println("Not Able To Close The ResultSet");
               //e.printStackTrace();
     if (aStmt != null) {
          try {
               aStmt.close();
          } catch (Exception e) {
               System.out.println("Not Able To Close The Statement");
               //e.printStackTrace();
     if (aConn != null) {
          try {
               aConn.close();
          } catch (Exception e) {
               System.out.println("Not Able To Close The Connection");
               //e.printStackTrace();
}Thanks
Ravi Jegga

Similar Messages

  • Weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception

    Hi,
    I am using a remote client program to look up data source via JNDI and access a database connection. Here's part of the code:
    Hashtable h = new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    h.put(Context.PROVIDER_URL, "t3://hostname:12345");
    Context ctx = new InitialContext(h);
    DataSource ds = (DataSource)ctx.lookup("myDS");
    Connection conn = ds.getConnection(); //thrwing exception at this line
    weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception
    Pl help ASAP

    Hi,
    Can u please post the complete stackTrace...because there may be many reasons behind "*weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception*"..That will really help to understand the root cause.
    If you dont find much StackTrace at Client end then at the sametimestamp ..may be on the Server Log you will find more details.
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)
    Edited by: Jay SenSharma on Feb 25, 2010 8:55 PM

  • Java.lang.NoSuchMethodError: weblogic.rmi.extensions.WRMIOutputStream

    Hi,
    I'm trying to run examples.jdbc.datasource.simplesql with Weblogic 5.1sp8,
    but am hitting this problem when it executes:
    An exception was caught. javax.naming.NamingException [Root exception is
    weblogic.rmi.ServerError: A Rem
    oteException occurred in the server method
    - with nested exception:
    [java.lang.NoSuchMethodError: weblogic.rmi.extensions.WRMIOutputStream:
    method writeObject(Ljava/lang/Ob
    ject;)V not found]]
    An exception was caught. java.lang.NullPointerException:
    Any pointers would be appreciated.
    Thanks,
    -Triet

    Hi..
    I guess itzz more of the service pack problems.
    Jars built on the later version won't work in the previous version (service packs) of weblogic.
    Try building a jar on the oldest version (service pack) u have and then try deploying it to the later version , i think it won't give u any problems.
    Try it out and let me know if u face any problems

  • Weblogic/rmi/extensions/server/Stub

    Hello,
    I have a small batch program trying to connect to WLS8.1 but get following Exception. I do have weblogic.jar in my CLASSPATH.
    Any ideas guys?
    java.lang.NoClassDefFoundError: weblogic/rmi/extensions/server/Stub
    Thanks

    A B <> writes:
    There were some changes in the stub architecture between 8.1 and 9.0, not sure if this is what you are running into - but it might be
    andy
    Hello,
    I have a small batch program trying to connect to WLS8.1 but get following Exception. I do have weblogic.jar in my CLASSPATH.
    Any ideas guys?
    java.lang.NoClassDefFoundError: weblogic/rmi/extensions/server/Stub
    Thanks

  • Java.lang.ClassCastException: Cannot narrow remote object weblogic.rmi.inte

    Hi,
    I am trying to deploy ejb3.0 on weblogic 10 server. I am able to find the JNDI name of the stateless session bean correctly, but getting an exception while narrowing it down. My ejb3.0 client is a standalone java client. I am trying to access the stateless session ejb3.0 bean.Please help me. i have been trying it for many days.
    thanks in advance,
    Sanjeev
    [sanpraka@localhost certEjb]$ java -cp ./:/usr/weblogic/bea/wlserver_10.0/server/lib/weblogic.jar:/usr/weblogic/bea/wlserver_10.0/server/lib/wlclient.jar com.titan.clients.Client
    Object is weblogic.rmi.internal.BasicRemoteRef - hostID: '5337880647112897730S:127.0.0.1:[7001,7001,-1,-1,-1,-1,-1]:wl_server:examplesServer', oid: '302', channel: 'null'
    java.lang.ClassCastException: Cannot narrow remote object weblogic.rmi.internal.BasicRemoteRef - hostID: '5337880647112897730S:127.0.0.1:[7001,7001,-1,-1,-1,-1,-1]:wl_server:examplesServer', oid: '302', channel: 'null' to com.titan.travelagent.TravelAgentRemote
    at weblogic.corba.server.naming.ReferenceHelperImpl.narrow(ReferenceHelperImpl.java:206)
    at weblogic.rmi.extensions.PortableRemoteObject.narrow(PortableRemoteObject.java:88)
    at weblogic.iiop.PortableRemoteObjectDelegateImpl.narrow(PortableRemoteObjectDelegateImpl.java:32)
    at javax.rmi.PortableRemoteObject.narrow(Unknown Source)
    at com.titan.clients.Client.main(Client.java:24)
    [sanpraka@localhost certEjb]$

    We have a similar problem. We have a web application (on server A) that invokes an EJB on a remote server (server B). This works fine, until we deploy another web application to server A at which point the existing web application starts to throw java.lang.ClassCastException when narrowing the remote EJB interface. The exception starts to be thrown at the moment the latter web application is deployed - start is not required.
    The latter web application contains (actually in APP-INF/lib) the old version of the EJB remote interface, that somehow gets to be loaded into the classpath of the existing web application. The solution is to delete the old version of the EJB remote interface from APP-INF/lib of the latter web application (we didn't need it anyway), but it would be interesting to know in which circumstances classes can get mixed between enterprise applications.
    I failed to reproduce the error in simple scenario, so this does not happen always.

  • Help: weblogic.ejb.extensions.LockTimedOutException

    Dear All:
              I got this exception in our EJB app:
              weblogic.ejb.extensions.LockTimedOutException. Please see attached error
              message below. It is not happening every time you call the bean. It is
              reproducable with patience.
              Have you had this kind of problem and more importantly, how to avoid it?
              Our env is: Wl51 with sp 10, jdk1.3.02, Sun Solaris Unix, a cluster contains
              2 wl instance
              Thanks.
              Wed Jun 19 14:26:53 EDT 2002:<I> <TX> Transaction (TxC (5488304, xid =
              1024502557372_6636, timeout = 300, txState = Marked Rollback, root = null)
              rolled back after 300 sec.
              [GC 99080K->85533K(130688K), 0.0227977 secs]
              Wed Jun 19 14:26:54 EDT 2002:<I> <EJB JAR deployment
              /webapp/dtshc/dts/nmc/ejb/nmcejb.jar> Transaction: '1024502557372_6636'
              rolled back due to EJB exception:
              weblogic.ejb.extensions.LockTimedOutException: Lock for
              primaryKey:com.mm.nmc.entity.ProducerOneYearPlanPK@1700fc timed out after
              300000 ms.
              at
              weblogic.ejb.internal.LockManagerImpl.waitForLock(LockManagerImpl.java:53)
              at weblogic.ejb.internal.LockManagerImpl.lock(LockManagerImpl.java:146)
              at weblogic.ejb.internal.LockManagerImpl.lock(LockManagerImpl.java:81)
              at weblogic.ejb.internal.StatefulEJBCache.bind(StatefulEJBCache.java:456)
              at
              weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulEJBObjec
              t.java:162)
              at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:476)
              at
              com.mm.nmc.entity.ProducerOneYearPlanEJBEOImpl.getData(ProducerOneYearPlanEJ
              BEOImpl.java:979)
              at
              com.mm.nmc.session.PersonalTacticalSessionEJB.getTacticalPlanGoals(PersonalT
              acticalSessionEJB.java:200)
              at
              com.mm.nmc.session.PersonalTacticalSessionEJB.getPersonalTacticalPlan(Person
              alTacticalSessionEJB.java:165)
              at
              com.mm.nmc.session.PersonalTacticalSessionEJB.getPersonalTacticalPlan(Person
              alTacticalSessionEJB.java:155)
              at
              com.mm.nmc.session.PersonalTacticalSessionEJBEOImpl.getPersonalTacticalPlan(
              PersonalTacticalSessionEJBEOImpl.java:340)
              at
              com.mm.nmc.session.PersonalTacticalSessionEJBEOImpl_WLSkel.invoke(PersonalTa
              cticalSessionEJBEOImpl_WLSkel.java:167)
              at
              weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
              pter.java:347)
              at
              weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
              r.java:86)
              at
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              5)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              Jiancai He
              http://www.hefamily.com
              

    Thanks for your message:
              In our case, it is entity EJB. The problem only happens in clustered env,
              and only happens in one of the servers.
              Question: can wl51 use database to manage the concurrent access of entity
              EJBs?
              Thanks.
              Jiancai
              Jiancai He
              http://www.hefamily.com
              "ludovic le goff" <[email protected]> wrote in message
              news:[email protected]...
              > Hello,
              >
              > Basically, it means two (or more) different threads are trying to get an
              > exclusive lock on the same entity bean or stateful session bean at the
              same
              > time. One of the locks eventually times out and this exception is thrown.
              >
              > There are several things that could cause this, for instance:
              >
              > - Two threads trying to invoke a method on the same stateful session bean
              at
              > the same time. The EJB 1.1 spec states that the server must detect this
              > condition and throw a RemoteException to all subsequent callers.
              > LockTimedOutException is a sub-class of java.rmi.RemoteException.
              >
              > - Two threads are trying to access the same entity bean instance inside a
              > single server in the cluster, and the caller holding the lock does not
              > finish fast enough.
              >
              > You might want to check if you have declared the Remote and home interface
              > in your jsp/servlet as global variable. And since it's global, instance
              > getting overridden every time. That's why both the two request end up in
              > using the same EJBObject.
              >
              > You should changed your code and make the remote/home interface variable
              > declaration as local i.e. within the scope of a single request.
              > Then you should not see any problem. Both the threads will use different
              > EJBObjects and hence you should not see any exceptions.
              >
              > You need to code in such a way as to avoid deadlocks. For instance, if
              > more than one client accesses the EJBs in different order, a deadlock may
              > occur. This deadlock is detected and after a certain timeout (5 minutes by
              > default), the deadlock is removed and one of the clients gets a
              > LockTimedOutException. For example, if one request in your application has
              > entity Account 1 (by doing an ejbFindByPrimaryKey) and is then about to
              get
              > Customer 1, and if at the same time another request in another business
              > method has got Customer 1 and is waiting for Account 1, you'll get a
              > deadlock and a LockTimedOutException after 5 minutes. You could avoid
              this
              > by include the code in a synchronized block. You could also get a
              deadlock
              > if you're making a reentrant call, e.g., A calls B which calls back to A.
              >
              > If you haven't already seen this, here's a blurb from "Locking Model for
              > Entity EJBs" at
              >
              http://www.weblogic.com/docs51/classdocs/API_ejb/EJB_environment.html#108796
              > 7 that you might find interesting:
              >
              > The EJB 1.1 container in WebLogic Server Version 5.1 uses a pessimistic
              > locking mechanism for entity EJB instances. As clients enlist an EJB or
              EJB
              > method in a transaction, WebLogic Server places an exclusive lock on the
              EJB
              > instance or method for the duration of the transaction. Other clients
              > requesting the same EJB or method block until the current transaction
              > completes.
              >
              > This method of locking provides reliable access to EJB data, and avoids
              > unnecessary calls to ejbLoad() to refresh the EJB instance's persistent
              > fields. However, in certain circumstances pessimistic locking may not
              > provide the best model for concurrent access to the EJB's data. Once a
              > client has locked an EJB instance, other clients are blocked from the
              EJB's
              > data even if they intend only to read the persistent fields.
              >
              > In a Nutshell the first exception is a consequence of the second.
              >
              > Hope this helps,
              > Ludovic.
              > Developer Relations Engineer
              > BEA Customer Support
              > "newsgroups.bea.com" <[email protected]> a écrit dans le message news:
              > [email protected]...
              > > Dear All:
              > >
              > > I got this exception in our EJB app:
              > > weblogic.ejb.extensions.LockTimedOutException. Please see attached error
              > > message below. It is not happening every time you call the bean. It is
              > > reproducable with patience.
              > >
              > > Have you had this kind of problem and more importantly, how to avoid it?
              > >
              > > Our env is: Wl51 with sp 10, jdk1.3.02, Sun Solaris Unix, a cluster
              > contains
              > > 2 wl instance
              > >
              > > Thanks.
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > >
              > > Wed Jun 19 14:26:53 EDT 2002:<I> <TX> Transaction (TxC (5488304, xid =
              > > 1024502557372_6636, timeout = 300, txState = Marked Rollback, root =
              null)
              > > rolled back after 300 sec.
              > >
              > > [GC 99080K->85533K(130688K), 0.0227977 secs]
              > >
              > > Wed Jun 19 14:26:54 EDT 2002:<I> <EJB JAR deployment
              > > /webapp/dtshc/dts/nmc/ejb/nmcejb.jar> Transaction: '1024502557372_6636'
              > > rolled back due to EJB exception:
              > >
              > > weblogic.ejb.extensions.LockTimedOutException: Lock for
              > > primaryKey:com.mm.nmc.entity.ProducerOneYearPlanPK@1700fc timed out
              after
              > > 300000 ms.
              > >
              > > at
              > >
              weblogic.ejb.internal.LockManagerImpl.waitForLock(LockManagerImpl.java:53)
              > >
              > > at weblogic.ejb.internal.LockManagerImpl.lock(LockManagerImpl.java:146)
              > >
              > > at weblogic.ejb.internal.LockManagerImpl.lock(LockManagerImpl.java:81)
              > >
              > > at
              weblogic.ejb.internal.StatefulEJBCache.bind(StatefulEJBCache.java:456)
              > >
              > > at
              > >
              >
              weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulEJBObjec
              > > t.java:162)
              > >
              > > at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:476)
              > >
              > > at
              > >
              >
              com.mm.nmc.entity.ProducerOneYearPlanEJBEOImpl.getData(ProducerOneYearPlanEJ
              > > BEOImpl.java:979)
              > >
              > > at
              > >
              >
              com.mm.nmc.session.PersonalTacticalSessionEJB.getTacticalPlanGoals(PersonalT
              > > acticalSessionEJB.java:200)
              > >
              > > at
              > >
              >
              com.mm.nmc.session.PersonalTacticalSessionEJB.getPersonalTacticalPlan(Person
              > > alTacticalSessionEJB.java:165)
              > >
              > > at
              > >
              >
              com.mm.nmc.session.PersonalTacticalSessionEJB.getPersonalTacticalPlan(Person
              > > alTacticalSessionEJB.java:155)
              > >
              > > at
              > >
              >
              com.mm.nmc.session.PersonalTacticalSessionEJBEOImpl.getPersonalTacticalPlan(
              > > PersonalTacticalSessionEJBEOImpl.java:340)
              > >
              > > at
              > >
              >
              com.mm.nmc.session.PersonalTacticalSessionEJBEOImpl_WLSkel.invoke(PersonalTa
              > > cticalSessionEJBEOImpl_WLSkel.java:167)
              > >
              > > at
              > >
              >
              weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
              > > pter.java:347)
              > >
              > > at
              > >
              >
              weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
              > > r.java:86)
              > >
              > > at
              > >
              >
              weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
              > > 5)
              > >
              > > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              > >
              > >
              > >
              > >
              > >
              > >
              > > --
              > > Jiancai He
              > > http://www.hefamily.com
              > >
              > >
              >
              >
              

  • I have a question about weblogic RMI , how can I resolve it.Thank you

    I have a question about the weblogic RMI .
    I have a program.web services+weblogic RMI +Data Sources When I run the program in the console application.it is ok.But When i run it with the web services(it 'is mean Get some parameter and run the different program).it's fail.The Exception is
    cannot assign instance of yype weblogic.rmi.RMIServices_1033_WLStub to field demo.RMIServer_1033_WLStub.stubinfo of type weblogic.rmi.internal.StubInfo in instance of demo.RMIEsrver_1033_WLStub
    how to resolve .Thank you.

    Hi Charles,
    Parental Controls has always had problems with https sites, no idea if it's fixed in 10.9.x or not.
    When you setup your Mac it shouldv'e made an admin account, are you not running from that account, or did you somehow change it to a Managed account???

  • Weblogic server it crashes unexpected

    Hi Folks,
    We have been running into this error for a long time. Here is a description
    of the error.
    We have weblogic server 6.0 SP2 is running in HPUX 11, in the same box we
    have Orbix 2000 installed.
    After starting the weblogic server it crashes unexpected.
    The following is the full stack trace of the error:
    Full thread dump:
    "ORBThreadPool-1::thread-3" daemon prio=9 tid=0x58ab90 nid=88 lwp_id=10651
    runnable [0x5ad34000..0x5ad34438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5ddc4240> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "XML-RPC Weblistener" daemon prio=9 tid=0x4db560 nid=43 lwp_id=10318
    runnable [0x5abc9000..0x5abc9438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5ddb0c40> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at helma.xmlrpc.WebServer.run(WebServer.java:175)
    at java.lang.Thread.run(Unknown Source)
    "ORBThreadPool-1::thread-7" daemon prio=9 tid=0x3d3ca8 nid=42 lwp_id=10316
    waiting on monitor [0x5abea000..0x5abea438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d981228> (a
    com.iona.corba.art.workqueue.WorkQueueImpl$WorkItemBuffer)
    at com.iona.common.concurrency.BoundedBuffer.poll(BoundedBuffer.java:175)
    - locked <0x5d981228> (a
    com.iona.corba.art.workqueue.WorkQueueImpl$WorkItemBuffer)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueImpl.dequeue(AutomaticWorkQue
    ueImpl.java:144)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:225)
    "ORBThreadPool-1::thread-6" daemon prio=9 tid=0x3d28b8 nid=41 lwp_id=10315
    runnable [0x5ac0b000..0x5ac0b438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5ddc52a8> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-4" daemon prio=9 tid=0x625fd8 nid=39 lwp_id=10311
    runnable [0x5ac4d000..0x5ac4d438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5d999860> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-2" daemon prio=9 tid=0x61a2f0 nid=37 lwp_id=10309
    runnable [0x5ac8f000..0x5ac8f438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5d99b280> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-1" daemon prio=9 tid=0x61a0a0 nid=36 lwp_id=10308
    waiting on monitor [0x5acb0000..0x5acb0438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at com.iona.common.time.UTCTimedWait.wait(UTCTimedWait.java:118)
    - locked <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at com.iona.common.timeout.TimeOutScheduler.run(TimeOutScheduler.java:68)
    - locked <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0x1756d8 nid=35
    lwp_id=10292 waiting on monitor [0x5acd1000..0x5acd1438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d916488> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5d916488> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "SSLListenThread" prio=9 tid=0x566218 nid=34 lwp_id=10165 runnable
    [0x5acf2000..0x5acf2438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5d9a2530> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at
    weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSocket.java
    :126)
    at weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:117)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "ListenThread" prio=9 tid=0x54f1f0 nid=33 lwp_id=10164 runnable
    [0x5ad13000..0x5ad13438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5d9a2470> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "Application Manager Thread" prio=8 tid=0x54ee60 nid=31 lwp_id=10162 waiting
    on monitor [0x5ad55000..0x5ad55438]
    at java.lang.Thread.sleep(Native Method)
    at
    weblogic.management.mbeans.custom.ApplicationManager$ApplicationPoller.run(A
    pplicationManager.java:644)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemon prio=9
    tid=0xa4af0 nid=30 lwp_id=10159 waiting on monitor [0x5ae3a000..0x5ae3a438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c73a8f0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c73a8f0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemon prio=9
    tid=0xa2478 nid=29 lwp_id=10158 waiting on monitor [0x5ae5b000..0x5ae5b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c73a478> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c73a478> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon prio=9
    tid=0xa2160 nid=28 lwp_id=10157 waiting on monitor [0x5ae7c000..0x5ae7c438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c739a60> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c739a60> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon prio=9
    tid=0xa1eb8 nid=27 lwp_id=10156 waiting on monitor [0x5ae9d000..0x5ae9d438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c7395e0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c7395e0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "TimeEventGenerator" daemon prio=9 tid=0x2e3230 nid=26 lwp_id=10154 waiting
    on monitor [0x5aebe000..0x5aebe438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c75edb8> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5c75edb8> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "TimeEventGenerator" daemon prio=9 tid=0xdec30 nid=25 lwp_id=10153 waiting
    on monitor [0x5aedf000..0x5aedf438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c77cc78> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5c77cc78> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "SpinnerRandomSource" daemon prio=9 tid=0xde748 nid=24 lwp_id=10152 waiting
    on monitor [0x5af00000..0x5af00438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ecfb8> (a weblogic.security.SpinnerThread)
    at java.lang.Object.wait(Unknown Source)
    at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.java:92
    - locked <0x5c5ecfb8> (a weblogic.security.SpinnerThread)
    at weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:109)
    "ExecuteThread: '14' for queue: 'default'" daemon prio=9 tid=0xdb2e0 nid=23
    lwp_id=10151 runnable [0x5af21000..0x5af21438]
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - waiting to lock <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '13' for queue: 'default'" daemon prio=9 tid=0xd9a50 nid=22
    lwp_id=10150 runnable [0x5af42000..0x5af42438]
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - waiting to lock <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '12' for queue: 'default'" daemon prio=9 tid=0xd81c0 nid=21
    lwp_id=10149 runnable [0x5af63000..0x5af63438]
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - locked <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '11' for queue: 'default'" daemon prio=9 tid=0xa0c98 nid=20
    lwp_id=10148 runnable [0..0x5af84438]
    "ExecuteThread: '10' for queue: 'default'" daemon prio=9 tid=0xa0110 nid=19
    lwp_id=10147 waiting on monitor [0x5afa5000..0x5afa5438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5eae88> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5eae88> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: 'default'" daemon prio=9 tid=0x9d650 nid=18
    lwp_id=10146 waiting on monitor [0x5afc6000..0x5afc6438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5eaa68> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5eaa68> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'default'" daemon prio=9 tid=0x9bdc0 nid=17
    lwp_id=10145 runnable [0x5afe8000..0x5afe7438]
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(Unknown Source)
    at weblogic.socket.SocketMuxer.write(SocketMuxer.java:60)
    at weblogic.rjvm.t3.T3JVMConnection.sendMsg(T3JVMConnection.java:247)
    at
    weblogic.rjvm.MsgAbbrevJVMConnection.sendOutMsg(MsgAbbrevJVMConnection.java:
    367)
    at
    weblogic.rjvm.MsgAbbrevJVMConnection.sendMsg(MsgAbbrevJVMConnection.java:173
    at weblogic.rjvm.ConnectionManager.sendMsg(ConnectionManager.java:482)
    at weblogic.rjvm.RJVMImpl.send(RJVMImpl.java:419)
    at
    weblogic.rjvm.MsgAbbrevOutputStream.flushAndSendRaw(MsgAbbrevOutputStream.ja
    va:114)
    at
    weblogic.rjvm.MsgAbbrevOutputStream.flushAndSend(MsgAbbrevOutputStream.java:
    122)
    at weblogic.rjvm.MsgAbbrevOutputStream.send(MsgAbbrevOutputStream.java:181)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:383)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    7)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '7' for queue: 'default'" daemon prio=9 tid=0x9a530 nid=16
    lwp_id=10144 waiting on monitor [0x5b008000..0x5b008438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ea1d8> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5ea1d8> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'default'" daemon prio=9 tid=0x84c90 nid=15
    lwp_id=10143 waiting on monitor [0x5b029000..0x5b029438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9db8> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9db8> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'default'" daemon prio=9 tid=0x83400 nid=14
    lwp_id=10142 waiting on monitor [0x5b04a000..0x5b04a438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9998> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9998> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'default'" daemon prio=9 tid=0x81b70 nid=13
    lwp_id=10141 waiting on monitor [0x5b06b000..0x5b06b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9578> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9578> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'default'" daemon prio=9 tid=0x802e0 nid=12
    lwp_id=10140 waiting on monitor [0x5b08c000..0x5b08c438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9158> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9158> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'default'" daemon prio=9 tid=0x7e9f0 nid=11
    lwp_id=10139 waiting on monitor [0x5b0ad000..0x5b0ad438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e8d38> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e8d38> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'default'" daemon prio=9 tid=0x76868 nid=10
    lwp_id=10138 waiting on monitor [0x5b0ce000..0x5b0ce438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e8918> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e8918> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'default'" daemon prio=9 tid=0x75788 nid=9
    lwp_id=10137 waiting on monitor [0x7f41b000..0x7f41b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e83f0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e83f0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "Thread-0" daemon prio=8 tid=0x2ddd58 nid=8 lwp_id=10136 waiting on monitor
    [0x7f43c000..0x7f43c438]
    at java.lang.Thread.sleep(Native Method)
    at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionManage
    rImpl.java:756)
    at java.lang.Thread.run(Unknown Source)
    "Signal Dispatcher" daemon prio=9 tid=0xecbe0 nid=7 lwp_id=10134 runnable
    [0..0xffffffff]
    "Finalizer" daemon prio=9 tid=0xe6250 nid=5 lwp_id=10132 waiting on monitor
    [0x7f491000..0x7f491438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c635ef8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    - locked <0x5c635ef8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    at
    java.lang.ref.Finalizer$FinalizerWorker$FinalizerThread.run(Finalizer.java:1
    20)
    "Reference Handler" daemon prio=9 tid=0xe48a0 nid=4 lwp_id=10131 waiting on
    monitor [0x7f4b2000..0x7f4b2438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ed268> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Unknown Source)
    at java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
    - locked <0x5c5ed268> (a java.lang.ref.Reference$Lock)
    "main" prio=9 tid=0x342a0 nid=1 lwp_id=10112 waiting on monitor
    [0x7f7f2000..0x7f7f2878]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5f0db8> (a weblogic.t3.srvr.T3Srvr)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:501)
    - locked <0x5c5f0db8> (a weblogic.t3.srvr.T3Srvr)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)
    "VM Thread" prio=7 tid=0xa9c40 nid=3 lwp_id=10130 runnable
    "VM Periodic Task Thread" prio=8 tid=0xebc68 nid=6 lwp_id=10133 waiting on
    monitor
    # Java version:
    # HotSpot VM (mixed mode)
    # HotSpot Virtual Machine Error, Unexpected Signal 11
    # occurred at pc=908d4
    # Error ID:
    /CLO/Components/JAVA_HOTSPOT/Src/build/hp-ux/../../src/os/hp-ux/vm/os_hp-ux.
    cpp, 3050
    ./startWebLogic.sh[151]: 9008 Abort(coredump)
    Suresh Athmakuri
    Datalinx Corporation
    505, WhitePlains Road
    Tarrytown , Ny

    Hi Folks,
    We have been running into this error for a long time. Here is a description
    of the error.
    We have weblogic server 6.0 SP2 is running in HPUX 11, in the same box we
    have Orbix 2000 installed.
    After starting the weblogic server it crashes unexpected.
    The following is the full stack trace of the error:
    Full thread dump:
    "ORBThreadPool-1::thread-3" daemon prio=9 tid=0x58ab90 nid=88 lwp_id=10651
    runnable [0x5ad34000..0x5ad34438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5ddc4240> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "XML-RPC Weblistener" daemon prio=9 tid=0x4db560 nid=43 lwp_id=10318
    runnable [0x5abc9000..0x5abc9438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5ddb0c40> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at helma.xmlrpc.WebServer.run(WebServer.java:175)
    at java.lang.Thread.run(Unknown Source)
    "ORBThreadPool-1::thread-7" daemon prio=9 tid=0x3d3ca8 nid=42 lwp_id=10316
    waiting on monitor [0x5abea000..0x5abea438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d981228> (a
    com.iona.corba.art.workqueue.WorkQueueImpl$WorkItemBuffer)
    at com.iona.common.concurrency.BoundedBuffer.poll(BoundedBuffer.java:175)
    - locked <0x5d981228> (a
    com.iona.corba.art.workqueue.WorkQueueImpl$WorkItemBuffer)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueImpl.dequeue(AutomaticWorkQue
    ueImpl.java:144)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:225)
    "ORBThreadPool-1::thread-6" daemon prio=9 tid=0x3d28b8 nid=41 lwp_id=10315
    runnable [0x5ac0b000..0x5ac0b438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5ddc52a8> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-4" daemon prio=9 tid=0x625fd8 nid=39 lwp_id=10311
    runnable [0x5ac4d000..0x5ac4d438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5d999860> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-2" daemon prio=9 tid=0x61a2f0 nid=37 lwp_id=10309
    runnable [0x5ac8f000..0x5ac8f438]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(Unknown Source)
    at
    com.iona.corba.atli.tcp.TCPConnectionSocketHandler.read(TCPConnectionSocketH
    andler.java:104)
    at
    com.iona.corba.atli.tcp.TCPConnectionIOHandler$ReaderWorkItem.run(TCPConnect
    ionIOHandler.java:605)
    - locked <0x5d99b280> (a java.lang.Object)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "ORBThreadPool-1::thread-1" daemon prio=9 tid=0x61a0a0 nid=36 lwp_id=10308
    waiting on monitor [0x5acb0000..0x5acb0438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at com.iona.common.time.UTCTimedWait.wait(UTCTimedWait.java:118)
    - locked <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at com.iona.common.timeout.TimeOutScheduler.run(TimeOutScheduler.java:68)
    - locked <0x5d98f7c8> (a com.iona.common.timeout.TimeOutScheduler)
    at
    com.iona.corba.util.WorkQueueExecutor$RunnableWrapper.execute(WorkQueueExecu
    tor.java:126)
    at
    com.iona.corba.art.workqueue.AutomaticWorkQueueThreadPool$WorkQueueThread.ru
    n(AutomaticWorkQueueThreadPool.java:232)
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0x1756d8 nid=35
    lwp_id=10292 waiting on monitor [0x5acd1000..0x5acd1438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5d916488> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5d916488> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "SSLListenThread" prio=9 tid=0x566218 nid=34 lwp_id=10165 runnable
    [0x5acf2000..0x5acf2438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5d9a2530> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at
    weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSocket.java
    :126)
    at weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:117)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "ListenThread" prio=9 tid=0x54f1f0 nid=33 lwp_id=10164 runnable
    [0x5ad13000..0x5ad13438]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(Unknown Source)
    - locked <0x5d9a2470> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(Unknown Source)
    at java.net.ServerSocket.accept(Unknown Source)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "Application Manager Thread" prio=8 tid=0x54ee60 nid=31 lwp_id=10162 waiting
    on monitor [0x5ad55000..0x5ad55438]
    at java.lang.Thread.sleep(Native Method)
    at
    weblogic.management.mbeans.custom.ApplicationManager$ApplicationPoller.run(A
    pplicationManager.java:644)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemon prio=9
    tid=0xa4af0 nid=30 lwp_id=10159 waiting on monitor [0x5ae3a000..0x5ae3a438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c73a8f0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c73a8f0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemon prio=9
    tid=0xa2478 nid=29 lwp_id=10158 waiting on monitor [0x5ae5b000..0x5ae5b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c73a478> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c73a478> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon prio=9
    tid=0xa2160 nid=28 lwp_id=10157 waiting on monitor [0x5ae7c000..0x5ae7c438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c739a60> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c739a60> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon prio=9
    tid=0xa1eb8 nid=27 lwp_id=10156 waiting on monitor [0x5ae9d000..0x5ae9d438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c7395e0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c7395e0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "TimeEventGenerator" daemon prio=9 tid=0x2e3230 nid=26 lwp_id=10154 waiting
    on monitor [0x5aebe000..0x5aebe438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c75edb8> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5c75edb8> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "TimeEventGenerator" daemon prio=9 tid=0xdec30 nid=25 lwp_id=10153 waiting
    on monitor [0x5aedf000..0x5aedf438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c77cc78> (a weblogic.time.common.internal.TimeTable)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    - locked <0x5c77cc78> (a weblogic.time.common.internal.TimeTable)
    at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :138)
    at java.lang.Thread.run(Unknown Source)
    "SpinnerRandomSource" daemon prio=9 tid=0xde748 nid=24 lwp_id=10152 waiting
    on monitor [0x5af00000..0x5af00438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ecfb8> (a weblogic.security.SpinnerThread)
    at java.lang.Object.wait(Unknown Source)
    at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.java:92
    - locked <0x5c5ecfb8> (a weblogic.security.SpinnerThread)
    at weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:109)
    "ExecuteThread: '14' for queue: 'default'" daemon prio=9 tid=0xdb2e0 nid=23
    lwp_id=10151 runnable [0x5af21000..0x5af21438]
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - waiting to lock <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '13' for queue: 'default'" daemon prio=9 tid=0xd9a50 nid=22
    lwp_id=10150 runnable [0x5af42000..0x5af42438]
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - waiting to lock <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '12' for queue: 'default'" daemon prio=9 tid=0xd81c0 nid=21
    lwp_id=10149 runnable [0x5af63000..0x5af63438]
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at
    weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
    - locked <0x5d99fb48> (a java.lang.Object)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '11' for queue: 'default'" daemon prio=9 tid=0xa0c98 nid=20
    lwp_id=10148 runnable [0..0x5af84438]
    "ExecuteThread: '10' for queue: 'default'" daemon prio=9 tid=0xa0110 nid=19
    lwp_id=10147 waiting on monitor [0x5afa5000..0x5afa5438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5eae88> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5eae88> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '9' for queue: 'default'" daemon prio=9 tid=0x9d650 nid=18
    lwp_id=10146 waiting on monitor [0x5afc6000..0x5afc6438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5eaa68> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5eaa68> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '8' for queue: 'default'" daemon prio=9 tid=0x9bdc0 nid=17
    lwp_id=10145 runnable [0x5afe8000..0x5afe7438]
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(Unknown Source)
    at weblogic.socket.SocketMuxer.write(SocketMuxer.java:60)
    at weblogic.rjvm.t3.T3JVMConnection.sendMsg(T3JVMConnection.java:247)
    at
    weblogic.rjvm.MsgAbbrevJVMConnection.sendOutMsg(MsgAbbrevJVMConnection.java:
    367)
    at
    weblogic.rjvm.MsgAbbrevJVMConnection.sendMsg(MsgAbbrevJVMConnection.java:173
    at weblogic.rjvm.ConnectionManager.sendMsg(ConnectionManager.java:482)
    at weblogic.rjvm.RJVMImpl.send(RJVMImpl.java:419)
    at
    weblogic.rjvm.MsgAbbrevOutputStream.flushAndSendRaw(MsgAbbrevOutputStream.ja
    va:114)
    at
    weblogic.rjvm.MsgAbbrevOutputStream.flushAndSend(MsgAbbrevOutputStream.java:
    122)
    at weblogic.rjvm.MsgAbbrevOutputStream.send(MsgAbbrevOutputStream.java:181)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:383)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:118)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    7)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '7' for queue: 'default'" daemon prio=9 tid=0x9a530 nid=16
    lwp_id=10144 waiting on monitor [0x5b008000..0x5b008438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ea1d8> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5ea1d8> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '6' for queue: 'default'" daemon prio=9 tid=0x84c90 nid=15
    lwp_id=10143 waiting on monitor [0x5b029000..0x5b029438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9db8> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9db8> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '5' for queue: 'default'" daemon prio=9 tid=0x83400 nid=14
    lwp_id=10142 waiting on monitor [0x5b04a000..0x5b04a438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9998> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9998> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '4' for queue: 'default'" daemon prio=9 tid=0x81b70 nid=13
    lwp_id=10141 waiting on monitor [0x5b06b000..0x5b06b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9578> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9578> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '3' for queue: 'default'" daemon prio=9 tid=0x802e0 nid=12
    lwp_id=10140 waiting on monitor [0x5b08c000..0x5b08c438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e9158> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e9158> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '2' for queue: 'default'" daemon prio=9 tid=0x7e9f0 nid=11
    lwp_id=10139 waiting on monitor [0x5b0ad000..0x5b0ad438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e8d38> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e8d38> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: 'default'" daemon prio=9 tid=0x76868 nid=10
    lwp_id=10138 waiting on monitor [0x5b0ce000..0x5b0ce438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e8918> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e8918> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: 'default'" daemon prio=9 tid=0x75788 nid=9
    lwp_id=10137 waiting on monitor [0x7f41b000..0x7f41b438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5e83f0> (a weblogic.kernel.ExecuteThread)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    - locked <0x5c5e83f0> (a weblogic.kernel.ExecuteThread)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "Thread-0" daemon prio=8 tid=0x2ddd58 nid=8 lwp_id=10136 waiting on monitor
    [0x7f43c000..0x7f43c438]
    at java.lang.Thread.sleep(Native Method)
    at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionManage
    rImpl.java:756)
    at java.lang.Thread.run(Unknown Source)
    "Signal Dispatcher" daemon prio=9 tid=0xecbe0 nid=7 lwp_id=10134 runnable
    [0..0xffffffff]
    "Finalizer" daemon prio=9 tid=0xe6250 nid=5 lwp_id=10132 waiting on monitor
    [0x7f491000..0x7f491438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c635ef8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    - locked <0x5c635ef8> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(Unknown Source)
    at
    java.lang.ref.Finalizer$FinalizerWorker$FinalizerThread.run(Finalizer.java:1
    20)
    "Reference Handler" daemon prio=9 tid=0xe48a0 nid=4 lwp_id=10131 waiting on
    monitor [0x7f4b2000..0x7f4b2438]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5ed268> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Unknown Source)
    at java.lang.ref.Reference$ReferenceHandler.run(Unknown Source)
    - locked <0x5c5ed268> (a java.lang.ref.Reference$Lock)
    "main" prio=9 tid=0x342a0 nid=1 lwp_id=10112 waiting on monitor
    [0x7f7f2000..0x7f7f2878]
    at java.lang.Object.wait(Native Method)
    - waiting on <0x5c5f0db8> (a weblogic.t3.srvr.T3Srvr)
    at java.lang.Object.wait(Unknown Source)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:501)
    - locked <0x5c5f0db8> (a weblogic.t3.srvr.T3Srvr)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)
    "VM Thread" prio=7 tid=0xa9c40 nid=3 lwp_id=10130 runnable
    "VM Periodic Task Thread" prio=8 tid=0xebc68 nid=6 lwp_id=10133 waiting on
    monitor
    # Java version:
    # HotSpot VM (mixed mode)
    # HotSpot Virtual Machine Error, Unexpected Signal 11
    # occurred at pc=908d4
    # Error ID:
    /CLO/Components/JAVA_HOTSPOT/Src/build/hp-ux/../../src/os/hp-ux/vm/os_hp-ux.
    cpp, 3050
    ./startWebLogic.sh[151]: 9008 Abort(coredump)
    Suresh Athmakuri
    Datalinx Corporation
    505, WhitePlains Road
    Tarrytown , Ny

  • Weblogic.jdbc.extensions.PoolLimitSQLException

    Hi,
    I am using JDeveloper 11.1.2.4 in this case. Basically I am testing my application by deleting part of the URL of my application for example, if I have:
    http://localhost:7103/myApp/faces/pages/myPage.jsf?_afrLoop=714583137314224…
    I will delete everything after the question mark;
    http://localhost:7103/myApp/faces/pages/myPage.jsf
    So I can restart the application. The issue is that after several attempts, I get
    weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool myDB to allocate to applications, please increase the size of the pool and retry..
    I know I could rise the pool size but is there anything I can do to get rid of this problem in a best practice way?
    Regards

    If you wait long enough the problem will solve itself. The problem is that if you start a new session without to close (invalidate) the old one, the resources remain active until they get collected during the session timeout in conjunction with the pooling parameters set for your application module.
    You can tweak the framework to minimize the effect. For this you minimize the time the resource are hold, by tweaking the pooling parameters in correlation with the session timeout.
    One thing you can do it to configure the application module to return the jdbc connection to the pool directly after the request is finished. This means the connection has to be set up for each request when it's checked out from the pool. On the other side the connection isn't attached to the application module until the application module is 'garbage collected' (which takes some time). For this you can set the 'Release Application Module upon release' to true (set the mark in the checkbox in the configuration of the application module. Then you should read the docs about the other pooling parameters and set them to values which suit your application (sorry there is no set of values which works for all applications).
    Use the controlling dashboard (http://server:port/console/dashboard) from the admin console and check the connection and application modules.
    Some links for more info: http://www.jobinesh.com/2013/06/did-you-notice-new-am-configuration.html
    http://andrejusb.blogspot.de/2011/10/experimenting-with-adf-bc-application.html
    Timo

  • Weblogic.rmi.internal.LocalServerRefMissing

    I am Attempting to serialize and deserialize a stateful session
    bean. The deserialization seems to be the problem. I have
    figured out that the line throwing the error is the "readObject"
    line.
    A similar problem was reported on Jan 31 2002, but the solution
    suggested deals with the "getEJBObject" line. I have tryed to
    implement this solution, as you can see below, but since the
    error I am getting is thrown before getting to that line, it
    makes no difference.
    The Exception I am getting is an "InvalidClassException".
    The message reads as follows = "weblogic.rmi.internal.
    LocalServerRefMissing no-arg constructor for class".
    As far as the "no-arg constructor" error goes, as I understand
    it I should not be having that problem. My Session bean
    implements the SessionBean interface and does not explicitly
    extend anything, so by default it extends Object, right?!
    Object has a no-args constructor, so there should be no problem.
    My code is as follows:
    ---SERIALIZATION---
    Handle msaHandle = contributions.getHandle();
    ObjectOutputStream toFile = new ObjectOutputStream(
    new FileOutputStream(handleFile));
    toFile.writeObject(msaHandle);
    toFile.close();
    ---DESERIALIZATION---
    ObjectInputStream fromFile = new ObjectInputStream(
    new FileInputStream(handleFile));
    Handle msaHandle = (Handle) fromFile.readObject();
    //MsaSession contributions =
    (MsaSession) msaHandle.getEJBObject();
    MsaSession contributions = (MsaSession) javax.rmi.PortableRemote
    Object.narrow(msaHandle.getEJBObject(), MsaSession.class);
    fromFile.close();
    I have tried to print "classname" (available in the
    InvalidClassException class), but only get null as the value.
    Anyone have any ideas?
    Matthew

    I am Attempting to serialize and deserialize a stateful session
    bean. The deserialization seems to be the problem. I have
    figured out that the line throwing the error is the "readObject"
    line.
    A similar problem was reported on Jan 31 2002, but the solution
    suggested deals with the "getEJBObject" line. I have tryed to
    implement this solution, as you can see below, but since the
    error I am getting is thrown before getting to that line, it
    makes no difference.
    The Exception I am getting is an "InvalidClassException".
    The message reads as follows = "weblogic.rmi.internal.
    LocalServerRefMissing no-arg constructor for class".
    As far as the "no-arg constructor" error goes, as I understand
    it I should not be having that problem. My Session bean
    implements the SessionBean interface and does not explicitly
    extend anything, so by default it extends Object, right?!
    Object has a no-args constructor, so there should be no problem.
    My code is as follows:
    ---SERIALIZATION---
    Handle msaHandle = contributions.getHandle();
    ObjectOutputStream toFile = new ObjectOutputStream(
    new FileOutputStream(handleFile));
    toFile.writeObject(msaHandle);
    toFile.close();
    ---DESERIALIZATION---
    ObjectInputStream fromFile = new ObjectInputStream(
    new FileInputStream(handleFile));
    Handle msaHandle = (Handle) fromFile.readObject();
    //MsaSession contributions =
    (MsaSession) msaHandle.getEJBObject();
    MsaSession contributions = (MsaSession) javax.rmi.PortableRemote
    Object.narrow(msaHandle.getEJBObject(), MsaSession.class);
    fromFile.close();
    I have tried to print "classname" (available in the
    InvalidClassException class), but only get null as the value.
    Anyone have any ideas?
    Matthew

  • Weblogic RMI error

    Dear all,
    I am using weblogic rmi. When I run the client, the following error
    appeared:
    java.rmi.UnmarshalException: failed to unmarshal class
    java.lang.Object; nested
    exception is:
    java.lang.ClassNotFoundException: Hello_WLStub
    --------------- nested within: ------------------
    weblogic.rmi.MarshalException: Remapped jndi exception
    - with nested exception:
    [java.rmi.UnmarshalException: failed to unmarshal class
    java.lang.Object; nested
    exception is:
            java.lang.ClassNotFoundException: Hello_WLStub]
    at weblogic.rmi.Naming.toWeblogicRmiException(Naming.java:289)
    at weblogic.rmi.Naming.lookup(Naming.java:78)
    at HelloClient.main(HelloClient.java:40)
    Server and client are 2 separate machine.However, when I copy
    Hello_WLStub.class to the client machine, it runs without problem.
    When weblogic do not download the stub class to client instead?
    Moreover, I found that all my startup classes must be placed inside
    E:\bea\wlserver6.0, otherwise those startup classes will not work. How
    to change this default location?Thanks!

    Dear all,
    I am using weblogic rmi. When I run the client, the following error
    appeared:
    java.rmi.UnmarshalException: failed to unmarshal class
    java.lang.Object; nested
    exception is:
    java.lang.ClassNotFoundException: Hello_WLStub
    --------------- nested within: ------------------
    weblogic.rmi.MarshalException: Remapped jndi exception
    - with nested exception:
    [java.rmi.UnmarshalException: failed to unmarshal class
    java.lang.Object; nested
    exception is:
            java.lang.ClassNotFoundException: Hello_WLStub]
    at weblogic.rmi.Naming.toWeblogicRmiException(Naming.java:289)
    at weblogic.rmi.Naming.lookup(Naming.java:78)
    at HelloClient.main(HelloClient.java:40)
    Server and client are 2 separate machine.However, when I copy
    Hello_WLStub.class to the client machine, it runs without problem.
    When weblogic do not download the stub class to client instead?
    Moreover, I found that all my startup classes must be placed inside
    E:\bea\wlserver6.0, otherwise those startup classes will not work. How
    to change this default location?Thanks!

  • Weblogic.rmi.internal.BasicRemoteRef and ClusterableRemoteRef

    Hi,
    I have a ejb3 stateless session bean deployed on a wls 10 mp1 cluster (1 Admin + 2 Managed Servers).
    The client side reference is a:
    weblogic.rmi.internal.BasicRemoteRef when invocations go to Managed Server1
    and
    ClusterableRemoteRef when invocations go to Managed Server2
    Is this indicative of a problem in cluster setup etc. ?
    Thanx,

    Hi ! I have a similar problem.
    I have an EJB3 stateless bean on a WLS clustered server, in the same machine, server1 and sever2.This EJB3 is deployed in a application called appli.ear
    My client is messageDrivenBean mdb deployed in another ear application client.ear , in the same machine, in the same clustered server.
    Sometimes, my client call is succesfull, but most often, my lookup fails with java.lang.class.cast Exception.This exception is thrown because i get weblogic.rmi.internal.BasicRemoteRef class from my lookup.When my call is succeful ,i get weblogic.rmi.internal.CollocatedRemoteRef class.
    Is it the same problem ? Must i get patch you are talking about?

  • Weblogic.ejb.extensions.LockTimedOutException: Bean could not be locked, current owner: '1068220908390_17680', new owner: '1068220908390_17748', timeout: '300000' ms

    Hi All,
    Again, Since yesterday (11/11/2003) , I started getting the Bean Lock error as
    below (I am using weblogic 4.5.1) :
    Note: We are using Stateless beans.
    Tue Nov 11 14:15:11 CET 2003:<I> <EJB> Transaction: '1068220908390_17748' rolled
    back due to EJB exception:
    com.sgs.common.framework.exception.EPlatformSystemException: An unexpected error
    occurs when trying to perform your request (RemoteException).
    weblogic.ejb.extensions.LockTimedOutException: Bean could not be locked, current
    owner: '1068220908390_17680', new owner: '1068220908390_17748', timeout: '300000'
    ms
         at com.sgs.ecertificate.CertificateSessionBean.getCertificate(CertificateSessionBean.java:1866)
         at com.sgs.ecertificate.CertificateSessionBean.approveCertificate(CertificateSessionBean.java:2617)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl.approveCertificate(CertificateSessionBeanEOImpl.java:936)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl_ServiceStub.approveCertificate(CertificateSessionBeanEOImpl_ServiceStub.java:1761)
         at com.sgs.ecertificate.ProcessApproveCertificateServlet.processRequest(ProcessApproveCertificateServlet.java:219)
         at com.sgs.common.framework.servlet.EPlatformServlet.doPost(EPlatformServlet.java:189)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:99)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:311)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:257)
         at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:550)
         at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:284)
         at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java:105)
    Tue Nov 11 14:15:11 CET 2003: ERR #-3# com.sgs.ecertificate.ProcessApproveCertificateServlet
    An unexpected error occurs when trying to perform your request (RemoteException).
    com.sgs.common.framework.exception.EPlatformSystemException: An unexpected error
    occurs when trying to perform your request (RemoteException).
    weblogic.ejb.extensions.LockTimedOutException: Bean could not be locked, current
    owner: '1068220908390_17680', new owner: '1068220908390_17748', timeout: '300000'
    ms
         at weblogic.ejb.internal.StatefulEJBCache.bind(StatefulEJBCache.java:310)
         at weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulEJBObject.java:128)
         at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:182)
         at com.sgs.ecertificate.entity.CertificateEntityBeanEOImpl.getData(CertificateEntityBeanEOImpl.java:4645)
         at com.sgs.ecertificate.CertificateSessionBean.getCertificate(CertificateSessionBean.java:1743)
         at com.sgs.ecertificate.CertificateSessionBean.approveCertificate(CertificateSessionBean.java:2617)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl.approveCertificate(CertificateSessionBeanEOImpl.java:936)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl_ServiceStub.approveCertificate(CertificateSessionBeanEOImpl_ServiceStub.java:1761)
         at com.sgs.ecertificate.ProcessApproveCertificateServlet.processRequest(ProcessApproveCertificateServlet.java:219)
         at com.sgs.common.framework.servlet.EPlatformServlet.doPost(EPlatformServlet.java:189)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:99)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:311)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:257)
         at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:550)
         at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:284)
         at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java:105)
    Thanks a lot in advance.
    Regards,
    Nilesh.

    Hi All,
    Again, Since yesterday (11/11/2003) , I started getting the Bean Lock error as
    below (I am using weblogic 4.5.1) :
    Note: We are using Stateless beans.
    Tue Nov 11 14:15:11 CET 2003:<I> <EJB> Transaction: '1068220908390_17748' rolled
    back due to EJB exception:
    com.sgs.common.framework.exception.EPlatformSystemException: An unexpected error
    occurs when trying to perform your request (RemoteException).
    weblogic.ejb.extensions.LockTimedOutException: Bean could not be locked, current
    owner: '1068220908390_17680', new owner: '1068220908390_17748', timeout: '300000'
    ms
         at com.sgs.ecertificate.CertificateSessionBean.getCertificate(CertificateSessionBean.java:1866)
         at com.sgs.ecertificate.CertificateSessionBean.approveCertificate(CertificateSessionBean.java:2617)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl.approveCertificate(CertificateSessionBeanEOImpl.java:936)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl_ServiceStub.approveCertificate(CertificateSessionBeanEOImpl_ServiceStub.java:1761)
         at com.sgs.ecertificate.ProcessApproveCertificateServlet.processRequest(ProcessApproveCertificateServlet.java:219)
         at com.sgs.common.framework.servlet.EPlatformServlet.doPost(EPlatformServlet.java:189)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:99)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:311)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:257)
         at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:550)
         at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:284)
         at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java:105)
    Tue Nov 11 14:15:11 CET 2003: ERR #-3# com.sgs.ecertificate.ProcessApproveCertificateServlet
    An unexpected error occurs when trying to perform your request (RemoteException).
    com.sgs.common.framework.exception.EPlatformSystemException: An unexpected error
    occurs when trying to perform your request (RemoteException).
    weblogic.ejb.extensions.LockTimedOutException: Bean could not be locked, current
    owner: '1068220908390_17680', new owner: '1068220908390_17748', timeout: '300000'
    ms
         at weblogic.ejb.internal.StatefulEJBCache.bind(StatefulEJBCache.java:310)
         at weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulEJBObject.java:128)
         at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:182)
         at com.sgs.ecertificate.entity.CertificateEntityBeanEOImpl.getData(CertificateEntityBeanEOImpl.java:4645)
         at com.sgs.ecertificate.CertificateSessionBean.getCertificate(CertificateSessionBean.java:1743)
         at com.sgs.ecertificate.CertificateSessionBean.approveCertificate(CertificateSessionBean.java:2617)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl.approveCertificate(CertificateSessionBeanEOImpl.java:936)
         at com.sgs.ecertificate.CertificateSessionBeanEOImpl_ServiceStub.approveCertificate(CertificateSessionBeanEOImpl_ServiceStub.java:1761)
         at com.sgs.ecertificate.ProcessApproveCertificateServlet.processRequest(ProcessApproveCertificateServlet.java:219)
         at com.sgs.common.framework.servlet.EPlatformServlet.doPost(EPlatformServlet.java:189)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:99)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:311)
         at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:257)
         at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:550)
         at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:284)
         at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java:105)
    Thanks a lot in advance.
    Regards,
    Nilesh.

  • Urgent help: how to create data source for Weblogic RMI driver

    Hi,
    Please let me how to create data source for Weblogic RMI driver using Administrator
    console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL as
    jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver. Now
    comes the problem.. what do put in properties text area? I am
    talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a new DataSource
    mapping to the connection pool created from step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle
    database. Please help me.
    pradeep bhat

    DataSource will internally do that for you (It will use RMI internaly) . You
    dont have to worry about the details of using RMI driver. Thats what is a
    DataSource is for.
    sree
    "pradeep bhat" <[email protected]> wrote in message
    news:[email protected]...
    Hi Sree,
    What u have written is abt configuting Datasource for type 2 and
    4 drivers.
    But I want to know how to create data source for RMI driver. If
    I map this datasource to connection pool that is created for
    type 2 or 4 drivers, i don't understand why RMI drivers are
    required in first place. If i do map the data source to connection pool
    created
    for type 2 or 4 drivers then where i
    would not have used the URL as jdbc:weblogic:rmi and Driver as
    weblogic.jdbc.rmi.Driver.
    Hope u will help me.
    pradeep bhat
    "Sree Bodapati" <[email protected]> wrote:
    Hi Pradeep
    To create a connection pool you have to use a database driver not RMI
    driver. So use a thin driver or the WebLogic jDriver for Oracle to setup
    your connection pool. Once the connection pool is created you can create
    a
    DataSource and use this datasource to connect to the database.
    The RMI driver can be used to get connections from the database via the
    connection pool and in that case you dont need a datasource. Recommended
    approach is to use a DataSource.
    hth
    sree
    "PRADEEP BHAT" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    Please let me how to create data source for Weblogic RMI driver using
    Administrator
    console.
    I understand that the following steps are required:
    1.Create connection pool for the RMI driver by specfiying URL as
    jdbc:weblogic:rmi and Driver as weblogic.jdbc.rmi.Driver. Now
    comes the problem.. what do put in properties text area? I am
    talking about key/value pairs required?
    2. Having done step 1 ( which I was not able to do) , create a new
    DataSource
    mapping to the connection pool created from step 1.
    How to accomplish step 1 ? I want to finally connect to Oracle
    database. Please help me.
    pradeep bhat

  • WebLogic RMI vs. Sun's RMI

    Hi,
    Does anyone have any idea on how to get WebLogic to use Sun's RMI
    library instead of the WebLogic one. We have existing Java bytecode (no
    source) which uses RMI and will not run on WebLogic (it does however run
    fine from Apache Tomcat).
    Thanks,
    Efraim

    WebLogic will only internally utilize its own RMI implementation, however
    you should be able to cohabitate with Sun's RMI fine, the VM that WLS runs
    on still has the Sun RMI runtime. Can you provide more details?
    cheers
    mbg
    "jessica" <[email protected]> wrote in message
    news:3ea66683$[email protected]..
    >
    I also have this problem,could anyone help answer?
    Does that mean i have to convert source code to use weblogic rmi?Or I haveto
    define binding name in weblogic propertie file?If it is true and how to?
    efraim <[email protected]> wrote:
    Hi,
    Does anyone have any idea on how to get WebLogic to use Sun's RMI
    library instead of the WebLogic one. We have existing Java bytecode (no
    source) which uses RMI and will not run on WebLogic (it does however
    run
    fine from Apache Tomcat).
    Thanks,
    Efraim

Maybe you are looking for

  • Acrobat 7 Pro activation problem

    Acrobat 7 activation servers have been deactivated, according to http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l Adobe punts you to http://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2%5Fdownloads Howe

  • Hi it keeps on crashing

    it keeps on crashing all the time

  • Distorted songs on burned DVD

    I created some movies in iMovie using still photos from iPhoto, and added songs from iTunes. Then I burned a DVD using iDVD. Playing this DVD on my Panasonic DVD player and TV, some, not all, of the songs are distorted. Everything sounds just fine on

  • Dv6-6135dx - How to Enable AHCI in bios for use in Windows 7 64bit

    I bought the dv6-6135dx notebook some time back. I recently got a Solid State Disk and I would like to turn on the Trim, feature. To turn Trim on I need to enable AHCI.  There is no such option in bios.  How can I turn AHCI on? I found an unlocked ve

  • Accessor vs Mutator methods

    Nowadays I'm studying for SCJP 5.0 and I found a strange definition about Encapsulation . When I have seen the "Accessor methods" To me, it would be related with the both "setters" and "getters" methods But on a mock I found this definition: "Accesso