Thread Dump issue with LD_ASSUME_KERNEL=2.4.1

Hi ,
When I take Thread Dump using 'jstack <PID>' in JDK 1.5 it givss me "sun.jvm.hotspot.debugger.DebuggerException" in the dump nothing more
I set LD_ASSUME_KERNEL=2.4.1 in my server to avaoid some other issue ( JVM crash some times)
Surprisingly, I can not stop my server ( my java process ) after that using our Shutdow scripts , Ctrl C or even "kill -9 <PID>",
I have to restart the machine or manually release uncleaned resources that my server occupied and restart the server
This happens Redhar 9 as well as in Linux ES.
Anybody faced similar problem?
Any help or information regarding this is highly apprecialted
Vasu
Thread Dump Output:
Caused by: sun.jvm.hotspot.debugger.DebuggerException: get_thread_regs failed for a lwp
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.getThreadIntegerRegisterSet0(Native Meth
od)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.access$800(LinuxDebuggerLocal.java:34)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$1GetThreadIntegerRegisterSetTask.doit(Li
nuxDebuggerLocal.java:431)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.run(Linux
DebuggerLocal.java:109)
sun.jvm.hotspot.debugger.DebuggerException: sun.jvm.hotspot.debugger.DebuggerException: get_thread_re
gs failed for a lwp
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.execute(L
inuxDebuggerLocal.java:134)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.getThreadIntegerRegisterSet(LinuxDebugge
rLocal.java:437)
at sun.jvm.hotspot.debugger.linux.LinuxThread.getContext(LinuxThread.java:48)
at sun.jvm.hotspot.runtime.linux_x86.LinuxX86JavaThreadPDAccess.getCurrentFrameGuess(LinuxX86
JavaThreadPDAccess.java:75)
at sun.jvm.hotspot.runtime.JavaThread.getCurrentFrameGuess(JavaThread.java:252)
at sun.jvm.hotspot.runtime.JavaThread.getLastJavaVFrameDbg(JavaThread.java:211)
at sun.jvm.hotspot.tools.StackTrace.run(StackTrace.java:42)
at sun.jvm.hotspot.tools.JStack.run(JStack.java:41)
at sun.jvm.hotspot.tools.Tool.start(Tool.java:204)
at sun.jvm.hotspot.tools.JStack.main(JStack.java:58)
Caused by: sun.jvm.hotspot.debugger.DebuggerException: get_thread_regs failed for a lwp
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.getThreadIntegerRegisterSet0(Native Meth
od)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.access$800(LinuxDebuggerLocal.java:34)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$1GetThreadIntegerRegisterSetTask.doit(Li
nuxDebuggerLocal.java:431)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.run(Linux
DebuggerLocal.java:109)
sun.jvm.hotspot.debugger.DebuggerException: sun.jvm.hotspot.debugger.DebuggerException: get_thread_re
gs failed for a lwp
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal$LinuxDebuggerLocalWorkerThread.execute(L
inuxDebuggerLocal.java:134)
at sun.jvm.hotspot.debugger.linux.LinuxDebuggerLocal.getThreadIntegerRegisterSet(LinuxDebugge
rLocal.java:437)

@brain0
I've downloaded the glic-2.3.6 sources from gnu, so I could build it from those. I'm however reluctant to do this because I really don't want to break my install.
I do agree with you on the NPTL statement, but pvs relies on allegro, which relies on LinuxThreads. Allegro is not being ported to new versions of glibc, so that approach is unfortunately not viable.
@iphitus
I wasn't very specific - it's allegro as in a lisp environment.
I think I'll try and install an old version of arch on wmware instead. Is there anywhere you can check out glibc version numbering on old arch install isos (ie. do I need arch-0.[1-9].iso)? And anywhere you can download the old isos (tried filewatcher, but a lot of the older sites seem broken)?
Thanks for the replies,
Mads
PS. I noticed that you recommended slackware for old kernels in another thread. I'm however in a bit different situation as I need old versions of glibc. Furthermore I would prefer sticking to arch, but was wondering whether there were any specific reasons for not doing that.

Similar Messages

  • Thread Safety Issue with DOM

    I am parsing an XML into a DOM object using the Xerces parser that is packaged with JDK 1.5.
    First, I create a new instance of the DocumentBuilderFactory and then using the factory, create a new DocumentBuilder. I then parse the XML using the DocumentBuilder to obtain a DOM object.
    Somehow, I am seeing the same DOM object being used for different XMLs.
    Is there a thread safety issue with the Xerces parser?

    certainly, Xerces parser is not thread safe. You have to provide thread safety by making sure that only one thread is allowed to access DocumentBuilder object.

  • Java Core Dump Issue with jdk 1.4.1

    I have an application which is run as a batch process. it handles data ranging from 100 thousand to 3 million. This process was running without any problem with jdk1.3 , but with 1.4.1 i am not able to finish this process , it generates core dump every time and the process stops. The process is asyncronus , it spons two threads to do the processing. Is there any way to handle this ?

    JDK 1.4.1 is not supported anymore by Sun. See also http://java.sun.com/products/archive/
    "... These products are down-revision products that may have various bugs, Y2000, and possibly security issues associated with them. Sun in no way recommends these products be used in a live, production environment ..."
    Try the latest 1.4.2 release. Go to http://java.sun.com/j2se/1.4.2/download.html or even better, try 5.0 at http://java.sun.com/j2se/1.5.0/download.jsp
    -jonelo

  • Thread Safe Issue with Servlet

    I saw the following statement in one of the J2EE compliant server documentations:
    "By default, servlets are not thread-safe. The methods in a single servlet instance are usually executed numerous times simultaneously (up to the available memory limit)."
    I'm quite concerned with this statement for the primary reason that (I'm trying to reason by reading it out loud) servlets are not going to be thread-safe especially when available memory hit really really low!! So, when the application is still having sufficient memory, we will not likely run into concurrency problems, i.e the happy scenario for a short period after server is started. BUT, good things don't last long.. Anyway, hope someone can explain to me with more insights. Thanks.

    Don't worry, memory occupation and thread safety are not related at all.
    In my opinion, the following is the meaning of the statement you quote.
    Since the servlet specification doesn't force any implementation to spawn a new servlet object upon each request (and this should be a real memory hit!), nor to synchronize calls to servlet methods, you should always code your servlet in a "stateless" fashion: you should be aware the same method on the same object could (and probably will) be called concurrently if multiple concurrent client requests are submitted.
    Hope I've been clear enough...

  • Ios 4 threaded email issue with outlook inbox?

    Anyone else have mail in their outlook inbox get removed or otherwise hidden when threading is turned on in IOS 4?
    I can see the full threaded conversation on the phone, but only the most recent message in a thread is in my outlook inbox.
    Input, solutions?

    Hi. This is a very delayed post to your original. I would like though to ask if you still have fully threaded emails in your iPhone. Since iOS 4.1 there are apparent issues, and it depends how you define 'threaded'. I am using Gmail and they have a threaded/conversations method of reading mail, very useful to see the entirety of a discussion. On my new iPhone 4 using the iPhone native mail app will not show threaded, only all of the messages from the other party, I'd need to scroll through a message to see my own input.. Or look in the Sent Mail folder. Both of which seem antiquated to me. I was interested in your post as you describe seeing your threaded mail properly on iPhone. Is this still the case?
    Thanks
    AMH.

  • Issue with Generate Create Script in new ODT 11.1.0.6.10 beta

    I've tried this on several tables in my database. I choose Generate Script to ... a file, for a given table it gives me the error message "An error occurred while writing to fil: \nValue was either too large or too smal for an Int32."
    (It doesn't matter if I'm in a Oracle database project or some other project.)
    Trying to Generate Script To Project... when I'm in a Oracle Database Project, Visual Studio (2005) crashes. It appears to be some overflow exception according to crashinfo:
    EventType : clr20r3 P1 : devenv.exe P2 : 8.0.50727.762 P3 : 45716759
    P4 : mscorlib P5 : 2.0.0.0 P6 : 461eee3d P7 : 407b P8 : a3
    P9 : system.overflowexception
    (With ODT 11.1.0.5.10 beta it worked fine dispite the issue discussed in thread: Re: Issue with Generate Create Script in new ODT 11.1.0.5.10 beta
    /Tomas

    Tried to debug this error and got these exception details. Hope it helps!
    /Tomas
    System.OverflowException was unhandled
    Message="Value was either too large or too small for an Int32."
    Source="mscorlib"
    StackTrace:
    Server stack trace:
    at System.Decimal.ToInt32(Decimal d)
    at System.Decimal.op_Explicit(Decimal value)
    at Oracle.Management.Omo.TableSpaceQuotaDetails.FillTableSpaceQuota(OracleDataReader reader)
    at Oracle.Management.Omo.User.FillTableSpaceQuotas(OracleDataReader reader)
    at Oracle.Management.Omo.Connection.GetUserCollection(Boolean refresh)
    at Oracle.Management.Omo.Connection.GetUsers(Boolean refresh)
    at Oracle.Management.Omo.TableSQLGenerator.GetCreateSQLs(OmoObject obj, ArrayList& typeAndNames, Boolean checkRequired, Boolean appendSchemaName)
    at Oracle.Management.Omo.TableViewBase.GetCreateSQLs(Boolean appendSchemaName)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateCreateScript(OracleUILConnCtx connCtx, String[] objectNames, String objectOwner, OracleUILObjectType objectType)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateCreateScriptAsyncMethod(IntPtr ppvObj, OracleUILConnCtx connCtx, String[] objectNames, String objectOwner, OracleUILObjectType objectType, ICollection& scriptText)
    at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(RuntimeMethodHandle md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
    Exception rethrown at [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(Message reqMsg, Boolean bProxyCase)
    at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(Object NotUsed, MessageData& msgData)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateScriptAsyncMethodDelegate.EndInvoke(ICollection& scriptText, IAsyncResult result)
    at Oracle.VsDevTools.OracleUILDBProjectServices.OnGenerateScriptAsyncCompletion(IAsyncResult ar)
    at System.Runtime.Remoting.Messaging.AsyncResult.SyncProcessMessage(IMessage msg)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
    at System.Runtime.Remoting.Proxies.AgileAsyncWorkerItem.ThreadPoolCallBack(Object o)
    at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
    at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)

  • Issue with calling procedure remotely

    Hello,
    Within the stored procedure, I am calling a procedure remotely but the '@v_remote_db' variable does not resolve:
    begin
    for i in cur_database_list loop
    v_remote_db := i.database_name;
    p_trunc_remote_table@v_remote_db; <<<------does not resolve
    end loop;
    end;
    Would work if obsolute value:
    p_trunc_remote_table@dev_db <------"works because dev_db is an actually database name and not a variable."
    The database link is correctly defined and works.
    Question: How to go around using obsolute value? I need to use a variable because the variable v__remote_db resolves to about 50 databases. Thank you.

    Duplicate thread:
    Re: issue with remote procedure calls
    Amiel

  • Starting issues with iMac 27 i5 quad after crucial RAM expansion

    I have read through a few threads regarding issues with crucial RAM upgrades in iMacs but they don't quite match what I am experiencing.
    I have installed 2 x 2 GB Crucial RAM (manufacturer 0x80CE) in addition to the pre-installed 4GB. The iMac works fine without any glitches, freezes or crashes. However, when I try to start it up in the morning I can hear the HD starting up and stopping once. The start chime doesn't sound and the display stays black. I take out the 4GB and the computer starts up without any problems. I then switch it off again, install the other 2 RAM again and lo and behold: all works fine. Until the next morning. I do not entirely disconnect the iMac, which is an Apple refurbished machine, I just switch it off.
    The first time that happened, I thought it was another problem like USB, bluetooth etc. So I systematically disconnected and reconnected all peripherals, I even used a USB mouse and keyboard and tried to start up from the restore DVD. So I went through all that pain.
    If there is an existing thread I would appreciate if you could point me in the right direction because I couldn't find anything like this on this forum.

    Did you test all 4 modules one at time in a top slot as suggested, to see if they are all working?
    ● If any one of the modules fail to properly boot the iMac, factory or crucial then do not reinstall it into the iMac.
    ● If all of the modules individually boot the iMac, then try reinstalling the Crucial in the top slots, the factory in the bottom slots and Startup the iMac reseting the PRAM.
    http://support.apple.com/kb/HT1379
    +1. Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.+
    +2. Turn on the computer.+
    +3. Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.+
    +4. Hold the keys down until the computer restarts and you hear the startup sound for the second time.+
    +5. Release the keys.+
    Now then if the iMac is not booting from all 8GB of RAM, then there is a compatibility problem with the Crucial RAM and you need to contact Crucial and tell them that there Ram is not working with your Factory RAM.
    Why would you only want RAM in the bottom slots, I thought the idea here was to upgrade from 4 to 8GB?
    The article clearly states that the iMac will not boot with only 1 module in a bottom slot.
    http://support.apple.com/kb/HT3918

  • Server0 is not getting started some timeout out services: issue with thread

    in SAP MMC server0 is in yellow colour!!!!!!!!
    and dev_server0.out file is below explaing the exect error in log file......................
    stdout/stderr redirect
    node name   : server0
    pid         : 7832
    system name : E12
    system nr.  : 03
    started at  : Thu May 29 09:46:48 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 7432] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: The filename, directory name, or volume label syntax is incorrect
    Loading: LogManager ... 1297 ms.
    Loading: PoolManager ... 16 ms.
    Loading: ApplicationThreadManager ... 47 ms.
    Loading: ThreadManager ... 16 ms.
    Loading: IpVerificationManager ... 31 ms.
    Loading: ClassLoaderManager ... 15 ms.
    Loading: ClusterManager ... 235 ms.
    Loading: LockingManager ... 78 ms.
    Loading: ConfigurationManager ... 2187 ms.
    Loading: LicensingManager ... 32 ms.
    Loading: CacheManager ... 140 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service runtimeinfo started. (16 ms).
      Service cross started. (94 ms).
      Service memory started. (16 ms).
      Service timeout started. (47 ms).
      Service file started. (187 ms).
      Service p4 started. (1078 ms).
      Service classpath_resolver started. (31 ms).
      Service log_configurator started. (3360 ms).
      Service locking started. (0 ms).
      Service naming started. (266 ms).
      Service ts started. (62 ms).
      Service javamail started. (62 ms).
      Service licensing started. (15 ms).
      Service iiop started. (250 ms).
    ================================================================================
    getThreadDump : Thu May 29 10:06:59 2008
    Timed out services:
    Service MigrationService > hard reference to interface container.
    Service shell > hard reference to interface security.
    Service bimmrdeployer > hard reference to interface container.
    ================================================================================
      Timed out services:
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_12-b03 mixed mode):
    "SAPJarResourceCloseTimeoutThread" daemon prio=5 tid=0x051789f0 nid=0x2770 in Object.wait() [0x07e7f000..0x07e7fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590060> (a com.sap.engine.frame.core.load.res.JarThread)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.frame.core.load.res.JarThread.run(JarThread.java:32)
         - locked <0x15590060> (a com.sap.engine.frame.core.load.res.JarThread)
    "Thread-14" daemon prio=5 tid=0x053dbdf8 nid=0x2f4 in Object.wait() [0x07e3f000..0x07e3fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155900f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x155900f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.cache.util.ReferenceQueueRunnable.run(ReferenceQueueRunnable.java:43)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x04dafc38 nid=0x102c in Object.wait() [0x07dff000..0x07dffd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590168> (a java.lang.Object)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:134)
         - locked <0x15590168> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x0556e008 nid=0x165c in Object.wait() [0x07dbf000..0x07dbfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590218> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15590218> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x055a6008 nid=0x27f0 in Object.wait() [0x07d7f000..0x07d7fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155902a0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:115)
         - locked <0x155902a0> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x04dea760 nid=0x26bc in Object.wait() [0x07d3f000..0x07d3fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590330> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15590330> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_EnquReader" prio=5 tid=0x04f8cb58 nid=0x25a0 runnable [0x06cff000..0x06cffd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at com.sap.bc.krn.enqu.EncomiHandle.ReceiveMessage(EncomiHandle.java:483)
         - locked <0x155903f8> (a java.lang.Object)
         at com.sap.bc.krn.enqu.EnccliMultiplexHandle.receive(EnccliMultiplexHandle.java:771)
         at com.sap.bc.krn.enqu.ReadRunnable.run(EnccliMultiplexHandle.java:958)
         at java.lang.Thread.run(Thread.java:534)
    "SAP J2EE Engine|MS Ping Thread" prio=5 tid=0x0503c9d0 nid=0x189c waiting on condition [0x06cbf000..0x06cbfd94]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.core.cluster.impl6.ms.MSRawConnection$MSPingRunner.run(MSRawConnection.java:2383)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_System_Thread[impl:5]_39" prio=5 tid=0x04d96d28 nid=0x10ac in Object.wait() [0x06bdf000..0x06bdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_38" prio=5 tid=0x05003a38 nid=0x2630 in Object.wait() [0x06b9f000..0x06b9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_37" prio=10 tid=0x04d96258 nid=0x259c in Object.wait() [0x06b5f000..0x06b5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_36" prio=5 tid=0x04d95808 nid=0x2610 in Object.wait() [0x06b1f000..0x06b1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_35" prio=5 tid=0x04faabd8 nid=0x17fc in Object.wait() [0x06adf000..0x06adfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_34" prio=5 tid=0x04faa180 nid=0x213c in Object.wait() [0x06a9f000..0x06a9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_33" prio=5 tid=0x04fa95f0 nid=0x2594 in Object.wait() [0x06a5f000..0x06a5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_32" prio=5 tid=0x04c738e0 nid=0x2580 in Object.wait() [0x06a1f000..0x06a1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_31" prio=5 tid=0x04c72cb8 nid=0x2558 in Object.wait() [0x069df000..0x069dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155909d8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:192)
         - locked <0x155909d8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.configuration.impl.event.QueuedEventProcessor.run(QueuedEventProcessor.java:44)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_30" prio=5 tid=0x04c721c8 nid=0x257c in Object.wait() [0x0699f000..0x0699fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_29" prio=5 tid=0x04c716d8 nid=0x2584 in Object.wait() [0x0695f000..0x0695fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_28" prio=5 tid=0x04c70be8 nid=0x2634 in Object.wait() [0x0691f000..0x0691fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_27" prio=5 tid=0x04f98e78 nid=0x2658 in Object.wait() [0x068df000..0x068dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_26" prio=5 tid=0x04f98b88 nid=0x2620 in Object.wait() [0x0689f000..0x0689fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_25" prio=10 tid=0x04f98098 nid=0x5b0 in Object.wait() [0x0685f000..0x0685fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590d50> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590d50> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_24" prio=5 tid=0x04f8d1e8 nid=0x1df4 waiting on condition [0x0681f000..0x0681fd94]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool$IdleConnectionsChecker.run(DBConnectionPool.java:427)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_23" prio=5 tid=0x04c6f008 nid=0x25c4 in Object.wait() [0x067df000..0x067dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_22" prio=10 tid=0x04e915d8 nid=0x25ec in Object.wait() [0x0679f000..0x0679fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x04e909a0 nid=0x255c in Object.wait() [0x0675f000..0x0675fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155910b0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x155910b0> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:18)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_20" prio=5 tid=0x04e8fc48 nid=0x238c in Object.wait() [0x0671f000..0x0671fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAP J2EE Engine|MS Queue Listener" prio=5 tid=0x04e8f0c0 nid=0x25cc in Object.wait() [0x066df000..0x066dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591260> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:192)
         - locked <0x15591260> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.cluster.impl6.ms.MSListenerQueue.run(MSListenerQueue.java:67)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_18" prio=5 tid=0x04f82db0 nid=0x2578 in Object.wait() [0x0669f000..0x0669fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_17" prio=5 tid=0x04f826c0 nid=0x2574 in Object.wait() [0x0665f000..0x0665fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_16" prio=5 tid=0x04aa4178 nid=0x2600 in Object.wait() [0x0661f000..0x0661fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591438> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x15591438> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.lib.util.cache.CacheGroup.run(CacheGroup.java:76)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAP J2EE Engine|MS Socket Listener" prio=5 tid=0x04aa3a88 nid=0x2530 runnable [0x065df000..0x065dfd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <0x15591d60> (a java.io.BufferedInputStream)
         at com.sap.engine.core.cluster.impl6.ms.MSMessageHeader.read(MSMessageHeader.java:440)
         at com.sap.engine.core.cluster.impl6.ms.MSMessageObjectImpl.readHeader(MSMessageObjectImpl.java:142)
         at com.sap.engine.core.cluster.impl6.ms.MSRawConnection.receiveRawMessage(MSRawConnection.java:1660)
         at com.sap.engine.core.cluster.impl6.ms.MSListener.run(MSListener.java:86)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_14" prio=5 tid=0x04aa2f98 nid=0x25b0 in Object.wait() [0x0659f000..0x0659fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_13" prio=5 tid=0x04aa24a8 nid=0x5e4 in Object.wait() [0x0655f000..0x0655fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155921d0> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.log_configurator.archive.Buffer.getTask(Buffer.java:38)
         - locked <0x155921d0> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:37)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_12" prio=5 tid=0x04aa19d0 nid=0x24a0 in Object.wait() [0x0651f000..0x0651fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_11" prio=5 tid=0x04b90190 nid=0xffc in Object.wait() [0x064df000..0x064dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_10" prio=5 tid=0x04b8faa0 nid=0x25ac in Object.wait() [0x0649f000..0x0649fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_9" prio=5 tid=0x04b8f008 nid=0x260c in Object.wait() [0x0645f000..0x0645fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x04f4dc10 nid=0x2588 in Object.wait() [0x0641f000..0x0641fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15592478> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x15592478> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_7" prio=5 tid=0x04ed5e18 nid=0x25c8 runnable [0x063df000..0x063dfd94]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0x15592590> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at com.sap.engine.core.cluster.impl6.net.ClusterServerSocket.accept(ClusterServerSocket.java:51)
         at com.sap.engine.core.cluster.impl6.JoinPortListener.run(JoinPortListener.java:72)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_6" prio=5 tid=0x04ed5c18 nid=0x2568 in Object.wait() [0x0639f000..0x0639fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Internal Thread" prio=5 tid=0x04eb6ce0 nid=0x100c in Object.wait() [0x0635f000..0x0635fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155927c0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:476)
         - locked <0x155927c0> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:20)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x04ecce28 nid=0x25f4 in Object.wait() [0x0631f000..0x0631fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928a8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x155928a8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Session Reader for cluster node 34388700" prio=5 tid=0x04eccc28 nid=0x25f0 runnable [0x062df000..0x062dfd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <0x155931c8> (a java.io.BufferedInputStream)
         at com.sap.engine.core.cluster.impl6.session.Reader.run(Reader.java:83)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_2" prio=5 tid=0x04aa4d38 nid=0x25c0 in Object.wait() [0x0629f000..0x0629fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_1" prio=5 tid=0x04aa4708 nid=0x2604 in Object.wait() [0x0625f000..0x0625fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "OrderedChannel for service" prio=5 tid=0x04b722a8 nid=0x23e4 in Object.wait() [0x0621f000..0x0621fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_ThreadManager Maintaining thread." prio=10 tid=0x04b720a8 nid=0x308 in Object.wait() [0x061df000..0x061dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593ac8> (a com.sap.engine.core.thread.impl5.ExecutorThread)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.thread.impl5.ExecutorThread.run(ExecutorThread.java:70)
         - locked <0x15593ac8> (a com.sap.engine.core.thread.impl5.ExecutorThread)
    "SAPEngine_Application_Thread[impl:3]_ThreadManager Maintaining thread." prio=10 tid=0x04daf810 nid=0x252c in Object.wait() [0x0619f000..0x0619fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593b20> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
         at com.sap.engine.core.thread.impl3.RuntimeMaintainingThread.run(RuntimeMaintainingThread.java:65)
         - locked <0x15593b20> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
    "SAPEngine_Application_Thread[impl:3]_39" prio=5 tid=0x04daed20 nid=0xc40 in Object.wait() [0x0615f000..0x0615fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_38" prio=5 tid=0x04e94e30 nid=0x12c0 in Object.wait() [0x0611f000..0x0611fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_37" prio=5 tid=0x04e94740 nid=0x2554 in Object.wait() [0x060df000..0x060dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_36" prio=5 tid=0x04e93c50 nid=0x145c in Object.wait() [0x0609f000..0x0609fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_35" prio=5 tid=0x04e93160 nid=0x2440 in Object.wait() [0x0605f000..0x0605fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_34" prio=5 tid=0x04e926f8 nid=0x2534 in Object.wait() [0x0601f000..0x0601fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_33" prio=5 tid=0x0117eed0 nid=0x27a8 in Object.wait() [0x05fdf000..0x05fdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_32" prio=5 tid=0x0117e3e0 nid=0x2220 in Object.wait() [0x05f9f000..0x05f9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_31" prio=5 tid=0x0117d8f0 nid=0x1dac in Object.wait() [0x05f5f000..0x05f5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_30" prio=5 tid=0x01188450 nid=0x1fbc in Object.wait() [0x05f1f000..0x05f1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_29" prio=5 tid=0x01187960 nid=0x1420 in Object.wait() [0x05edf000..0x05edfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_28" prio=5 tid=0x01186e70 nid=0x2560 in Object.wait() [0x05e9f000..0x05e9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_27" prio=5 tid=0x01186408 nid=0x22d8 in Object.wait() [0x05e5f000..0x05e5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_26" prio=5 tid=0x04c65760 nid=0x7f4 in Object.wait() [0x05e1f000..0x05e1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_25" prio=5 tid=0x04c64c70 nid=0x179c in Object.wait() [0x05ddf000..0x05ddfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_24" prio=5 tid=0x04c64180 nid=0x256c in Object.wait() [0x05d9f000..0x05d9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_23" prio=5 tid=0x04fca4a0 nid=0xa28 in Object.wait() [0x05d5f000..0x05d5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_22" prio=5 tid=0x04fc9a08 nid=0x1974 in Object.wait() [0x05d1f000..0x05d1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_21" prio=5 tid=0x04fc9008 nid=0x24a4 in Object.wait() [0x05cdf000..0x05cdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_20" prio=5 tid=0x04ad4ba0 nid=0x1c6c in Object.wait() [0x05c9f000..0x05c9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_19" prio=5 tid=0x04ad40b0 nid=0xd7c in Object.wait() [0x05c5f000..0x05c5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_18" prio=5 tid=0x049a3d68 nid=0x2550 in Object.wait() [0x05c1f000..0x05c1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_17" prio=5 tid=0x049a3a78 nid=0x2408 in Object.wait() [0x05bdf000..0x05bdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_16" prio=5 tid=0x049a2f88 nid=0x1684 in Object.wait() [0x05b9f000..0x05b9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_15" prio=5 tid=0x049a2530 nid=0x2230 in Object.wait() [0x05b5f000..0x05b5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_14" prio=5 tid=0x04d09830 nid=0x2540 in Object.wait() [0x05b1f000..0x05b1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_13" prio=5 tid=0x04d08d70 nid=0x2454 in Object.wait() [0x05adf000..0x05adfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_12" prio=5 tid=0x04d08408 nid=0x24c4 in Object.wait() [0x05a9f000..0x05a9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_11" prio=5 tid=0x04b2f0c8 nid=0x2210 in Object.wait() [0x05a5f000..0x05a5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_10" prio=5 tid=0x04cbe670 nid=0x2330 in Object.wait() [0x05a1f000..0x05a1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_9" prio=5 tid=0x04cbe3e8 nid=0xf28 in Object.wait() [0x059df000..0x059dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_8" prio=5 tid=0x0119f170 nid=0x1978 in Object.wait() [0x0599f000..0x0599fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_7" prio=5 tid=0x0119f008 nid=0x2284 in Object.wait() [0x0595f000..0x0595fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_6" prio=5 tid=0x04ebb408 nid=0x24ec in Object.wait() [0x0591f000..0x0591fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_5" prio=5 tid=0x0119c720 nid=0x2448 in Object.wait() [0x058df000..0x058dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_4" prio=5 tid=0x0119c520 nid=0x1e68 in Object.wait() [0x0589f000..0x0589fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_3" prio=5 tid=0x0119c3b8 nid=0x2148 in Object.wait() [0x0585f000..0x0585fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_2" prio=5 tid=0x0119be78 nid=0x1e28 in Object.wait() [0x0581f000..0x0581fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_1" prio=5 tid=0x0119bd10 nid=0x1ef8 in Object.wait() [0x057df000..0x057dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_0" prio=5 tid=0x04b92008 nid=0x2504 in Object.wait() [0x0579f000..0x0579fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "Thread-1" prio=5 tid=0x01189310 nid=0x1e3c runnable [0x0492f000..0x0492fd94]
         at java.util.Calendar.<init>(Calendar.java:786)
         at java.util.GregorianCalendar.<init>(GregorianCalendar.java:364)
         at java.util.GregorianCalendar.<init>(GregorianCalendar.java:336)
         at com.sap.localization.LocalizableTextFormatter.<init>(LocalizableTextFormatter.java:71)
         at com.sap.localization.LocalizableTextFormatter.<init>(LocalizableTextFormatter.java:126)
         at com.sap.localization.LocalizableTextFormatter.formatString(LocalizableTextFormatter.java:199)
         at com.sap.engine.core.service630.ResourceUtils.formatString(ResourceUtils.java:244)
         - locked <0x50bd4e58> (a java.lang.Class)
         at com.sap.engine.core.service630.container.MemoryContainer.startServices(MemoryContainer.java:230)
         - locked <0x15594ef0> (a com.sap.engine.core.service630.container.MemoryContainer)
         at com.sap.engine.core.service630.container.MemoryContainer.start(MemoryContainer.java:158)
         - locked <0x15594f78> (a java.lang.Object)
         at com.sap.engine.core.service630.container.AbstractServiceContainer.init(AbstractServiceContainer.java:109)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:560)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:254)
         at com.sap.engine.core.Framework.start(Framework.java:188)
         - locked <0x15594eb0> (a com.sap.engine.core.Framework)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
         at java.lang.Thread.run(Thread.java:534)
    "Signal Dispatcher" daemon prio=10 tid=0x01159408 nid=0x24e4 waiting on condition [0x00000000..0x00000000]
    "Finalizer" daemon prio=9 tid=0x010f0e50 nid=0x24bc in Object.wait() [0x0472f000..0x0472fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155955f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x155955f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x010f02c0 nid=0x233c in Object.wait() [0x046ef000..0x046efd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593748> (a java.lang.ref.Reference$Lock)
         at java.lang.Object.wait(Object.java:429)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
         - locked <0x15593748> (a java.lang.ref.Reference$Lock)
    "main"

    Hi Naveen,
    What you are doing is not supported by Oracle. From EM Database Console FAQ (863631.1):
    What action needs to be taken if the hostname or SID of the database server is changed?
    If there is a hostname or SID change for the database server then the database console needs to be recreated. There is no other solution if the hostname or SID is changed other that recreating the database console. All database console configuration files are created under the hostname_sid directory and the configuration files along with the repository keeps reference of the hostname, which is why dbconsole needs to be reconfigured if there is change in hostname/sid.
    Refer : Note.293678.1 How To Reconfigure DB Control After a Hostname, Domain name or Listener Change Has Occurred On The Server
    And take a look at note 278100.1: How To Drop, Create And Recreate DB Control In A 10g Database
    Eric

  • Help needed with diagnosis of WebLogic server thread dump

     

    Sorry, my mistake - I was trying to search for "weblogic" before the dump file
    loaded fully.... I am not very familiar with VisiBroker and may be totally
    wrong, but my guess is it creates a thread for each connection/client. I would
    look for VisiBroker properties or settings that could limit the runaway creation
    of threads....
    Arunabh
    "Dimitri I. Rakitine" wrote:
    It is, preceded by lots and lots of CORBA (visibroker) threads. Is it
    possible that application code
    creates new ORBs more often than it should ?
    "Arunabh Hazarika" <[email protected]> wrote in message
    news:[email protected]...
    The attached file does not look like a WebLogic Server thread dump.....
    Arunabh
    Kapil Singh Pawar wrote:
    I am running a web application on WebLogic server 6.0 sp2 + rp1 (HP-UX).
    After
    I start loading the web application with more users I constantly get thejava.lang.OutOfMemoryError.
    I tried increasing the max_thread_proc kernel parameter to 2048 but thatdoes
    not seem to help much. Here is the error that I get on the WebLogicServer console.
    <Oct 7, 2002 5:00:27 PM GMT+02:00> <Error> <HTTP><[WebAppServletContext(1828590,i2)]
    Servlet failed with Exception
    java.lang.OutOfMemoryError: max threads limit being reached in VM
    at java.lang.Thread.start(Native Method)
    at netscape.ldap.LDAPConnThread.<init>(LDAPConnThread.java:112)
    atnetscape.ldap.LDAPConnection.getNewThread(LDAPConnection.java:1117)
    atnetscape.ldap.LDAPConnection.connect(LDAPConnection.java:1034)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:915)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:759)
    atcom.i2.scm.LDAP.ScmLDAPDefaultAuthenticate.authenticate(ScmLDAPDefaultAuthen
    ticate.java:129)
    at scmldap.service(scmldap.java:452)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :213)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:1302)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :1676)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    I am posting the thread dump obtained at the OutOfMemoryError stage. Anyhelp
    in diagnosing the thread dump and possible fix for this error is highlyappreciated.
    For information sake, while the web application encountersOutOfMemoryError the
    example web apps and WebLogic console application work fine. So it looksto be
    a case of memory outage only for my custom application.
    Thanks
    Kapil Singh Pawar
    Name: thread_dump.txt
    thread_dump.txt Type: Plain Text (text/plain)
    Encoding: base64--
    Dimitri

  • Help with Thread dump analisys

    We have problems with our application which runs on bea8.1 sp1.
    Problem is that bea runs out from Threads (StuckThreads).
    thread dums look same for all threads but i can's see what is wrong.
    Here are dumps from first and last threads :
    "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=0x7f3628
    nid=0xd runnable [a6280000..a6281994
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    - locked <c3197aa0> (a java.io.BufferedInputStream)
    at java.io.DataInputStream.readByte(DataInputStream.java:276)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:189)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
    at com.hutchison3g.core.product.homebase.services.HomebaseFactoryImpl_Stub.getIdentity(Unknown
    Source)
    at com.hutchison3g.core.product.homebase.client.HomebaseClient.getIdentity(HomebaseClient.java:207)
    at com.hutchison3g.core.product.homebase.client.util.HomebaseProxy.getIdentity(HomebaseProxy.java:78)
    at com.hutchison3g.core.product.homebase.client.util.UserUtil.getIdentity(UserUtil.java:132)
    at com.hutchison3g.core.product.homebase.servlets.TalonUniServlet.doGet(TalonUniServlet.java:181)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at com.hutchison3g.core.product.homebase.client.servlet.core.HomebaseCommonServlet.service(HomebaseCommonServlet.
    java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    "ExecuteThread: '24' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=0x6dd548
    nid=0x24 runnable [a3d80000..a3d819
    94]
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    - locked <c30c5010> (a java.io.BufferedInputStream)
    at java.io.DataInputStream.readByte(DataInputStream.java:276)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:189)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
    at com.hutchison3g.core.product.homebase.services.HomebaseFactoryImpl_Stub.getIdentity(Unknown
    Source)
    at com.hutchison3g.core.product.homebase.client.HomebaseClient.getIdentity(HomebaseClient.java:207)
    at com.hutchison3g.core.product.homebase.client.util.HomebaseProxy.getIdentity(HomebaseProxy.java:78)
    at com.hutchison3g.core.product.homebase.client.util.UserUtil.getIdentity(UserUtil.java:132)
    at com.hutchison3g.core.product.homebase.servlets.TalonUniServlet.doGet(TalonUniServlet.java:181)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at com.hutchison3g.core.product.homebase.client.servlet.core.HomebaseCommonServlet.service(HomebaseCommonServlet.
    java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)

    Rob Woollen <[email protected]> wrote:
    Can you post the full thread dump?
    It looks like you have some code making an RMI call over the network.
    Is it calling another server, or perhaps a loopback call into the same
    server. The latter (opening a socket to your own process) is a good
    way
    to get a deadlock.
    -- Rob
    dara wrote:
    We have problems with our application which runs on bea8.1 sp1.
    Problem is that bea runs out from Threads (StuckThreads).
    thread dums look same for all threads but i can's see what is wrong.
    Here are dumps from first and last threads :
    "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" daemon prio=5tid=0x7f3628
    nid=0xd runnable [a6280000..a6281994
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    - locked <c3197aa0> (a java.io.BufferedInputStream)
    at java.io.DataInputStream.readByte(DataInputStream.java:276)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:189)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
    at com.hutchison3g.core.product.homebase.services.HomebaseFactoryImpl_Stub.getIdentity(Unknown
    Source)
    at com.hutchison3g.core.product.homebase.client.HomebaseClient.getIdentity(HomebaseClient.java:207)
    at com.hutchison3g.core.product.homebase.client.util.HomebaseProxy.getIdentity(HomebaseProxy.java:78)
    at com.hutchison3g.core.product.homebase.client.util.UserUtil.getIdentity(UserUtil.java:132)
    at com.hutchison3g.core.product.homebase.servlets.TalonUniServlet.doGet(TalonUniServlet.java:181)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at com.hutchison3g.core.product.homebase.client.servlet.core.HomebaseCommonServlet.service(HomebaseCommonServlet.
    java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    "ExecuteThread: '24' for queue: 'weblogic.kernel.Default'" daemon prio=5tid=0x6dd548
    nid=0x24 runnable [a3d80000..a3d819
    94]
    at java.net.SocketInputStream.socketRead0(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:129)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:201)
    - locked <c30c5010> (a java.io.BufferedInputStream)
    at java.io.DataInputStream.readByte(DataInputStream.java:276)
    at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:189)
    at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:133)
    at com.hutchison3g.core.product.homebase.services.HomebaseFactoryImpl_Stub.getIdentity(Unknown
    Source)
    at com.hutchison3g.core.product.homebase.client.HomebaseClient.getIdentity(HomebaseClient.java:207)
    at com.hutchison3g.core.product.homebase.client.util.HomebaseProxy.getIdentity(HomebaseProxy.java:78)
    at com.hutchison3g.core.product.homebase.client.util.UserUtil.getIdentity(UserUtil.java:132)
    at com.hutchison3g.core.product.homebase.servlets.TalonUniServlet.doGet(TalonUniServlet.java:181)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at com.hutchison3g.core.product.homebase.client.servlet.core.HomebaseCommonServlet.service(HomebaseCommonServlet.
    java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Thanks Rob,
    sorry for delay but I was on vacation.
    You are right about RMI, our app. consist from FE (front end) and BE (back end),
    comunication between them is RMI.
    We had some problems with BE but now we have new version and it looks ok.
    Anyway thanks for help, if I will have again some problems then it will be
    Help with thread analisys 2 ;-)

  • Struck thread issue with weblogic 9.2

    Hi,
    could you please help me find out the reason why lots of thread in my weblogic application are stuck. My application is a jsp based web application which is using accenture grnds framework and i can see lots of threads stuck at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire. Blow is the thread dump from my application.
    "[STUCK] ExecuteThread: '15' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x03564170 nid=0x42 in Object.wait() [0xb047e000..0xb047f9f0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xce4d2500> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xce4d2500> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '14' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x03ee3420 nid=0x41 in Object.wait() [0xb057e000..0xb057fb70]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xce6ca288> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xce6ca288> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '13' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x03ee3258 nid=0x40 in Object.wait() [0xb067e000..0xb067faf0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xcd98b768> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xcd98b768> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '12' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x00581f28 nid=0x3f in Object.wait() [0xb077f000..0xb077fc70]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xcdd7ad30> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xcdd7ad30> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '11' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x0229a610 nid=0x3e in Object.wait() [0xb087e000..0xb087fbf0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xce6ca288> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xce6ca288> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x01cad6a0 nid=0x3d in Object.wait() [0xb097e000..0xb097f970]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xce4d2500> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xce4d2500> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x02389c58 nid=0x3c in Object.wait() [0xb0a7e000..0xb0a7f8f0]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xcd98b768> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xcd98b768> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    "[STUCK] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=1 tid=0x012ba168 nid=0x3b in Object.wait() [0xb0b7e000..0xb0b7fa70]
    at java.lang.Object.wait(Native Method)
    - waiting on <0xcdd7ad30> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at java.lang.Object.wait(Object.java:474)
    at EDU.oswego.cs.dl.util.concurrent.Semaphore.acquire(Semaphore.java:108)
    - locked <0xcdd7ad30> (a EDU.oswego.cs.dl.util.concurrent.Semaphore)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.acquireSemaphore(SiiamSinglePointOfEntry.java:283)
    at com.telstra.siiam.web.arch.screensflow.SiiamSinglePointOfEntry.doGet(SiiamSinglePointOfEntry.java:147)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:223)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3245)
    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:2003)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1909)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1359)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Please help me.

    Thanks for reply Jay. I check my code but didn't understand where is the problem here is the code snap could you please check and pin point me where is things wrong.
    package com.telstra.siiam.web.arch.screensflow;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    import javax.management.MBeanServer;
    import javax.management.MBeanServerFactory;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import mx4j.util.StandardMBeanProxy;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.grnds.structural.web.GrndsExchangeContext;
    import org.grnds.structural.web.GrndsHttpServlet;
    import EDU.oswego.cs.dl.util.concurrent.Semaphore;
    import com.telstra.siiam.web.app.common.JspKeys;
    import com.telstra.siiam.web.app.common.SessionKeys;
    import com.telstra.siiam.web.arch.stats.ServletStats;
    import com.telstra.siiam.web.arch.stats.StatisticsHolder;
    import com.telstra.siiam.web.arch.stats.StatisticsHolderMBean;
    import com.telstra.siiam.web.arch.businessobjectdata.CaseDO;
    * Single point of entry (Controller) of the web-application.
    * <P>
    * The intent of this class is to add pre/post processings (logging/security
    * check etc) on top of the basic GRNDS controller.
    * <P>
    * The current implementation checks that the incoming request it not
    * out-of-context.
    public class SiiamSinglePointOfEntry extends GrndsHttpServlet {
    // Constants -----------------------------------------------------
    private static final Log _statsLogger = LogFactory.getLog("ServletStats");
    private static final Log _log =
    LogFactory.getLog(SiiamSinglePointOfEntry.class);
    private static final String REQUEST_SEMAPHORE = "ReqSemaphore";
         * Name of the request attribute added to incoming requests in order to
         * detect re-entrant calls.
    private static final String SEMAPHORE_OWNER = "Owner";
    // Attributes ----------------------------------------------------
    private MBeanServer _server;
    private StatisticsHolderMBean _holder;
    // Static --------------------------------------------------------
    // Constructors --------------------------------------------------
    // Public --------------------------------------------------------
    // Z implementation ----------------------------------------------
    // GrndsHttpServlet overrides
    public void init() throws ServletException {
    // System.out.println("[<SiiamSinglePointOfEntry> <init>] - calling init method of GrndsHttpServlet super class");
    super.init();
    // System.out.println("[<SiiamSinglePointOfEntry> <init>] - Called init method of GrndsHttpServlet super class");
    Iterator servers = MBeanServerFactory.findMBeanServer(null).iterator();
    if (!servers.hasNext()) {
    throw new IllegalStateException("No MBeanServer registered.");
    _server = (MBeanServer) servers.next();
    // System.out.println("[<SiiamSinglePointOfEntry> <init>] - server: " _server);
    _holder =
    (StatisticsHolderMBean) StandardMBeanProxy.create(
    StatisticsHolderMBean.class,
    _server,
    StatisticsHolder.NAME);
    // System.out.println("[<SiiamSinglePointOfEntry> <init>] - holder: " _holder.toString());
    protected void doPost(HttpServletRequest arg0, HttpServletResponse arg1)
    throws ServletException, IOException {
    // System.out.println("[<SiiamSinglePointOfEntry> <doPost>] - In doPost");
    /* capture user input in http request This code is written to only for debuging purpose */
         //########################Start####################################
              Enumeration params = arg0.getParameterNames();
              String paramName = null;
              String[] paramValues = null;
              //System.out.println("[<SiiamSinglePointOfEntry> <doPost>] - user input name value pair");
              while (params.hasMoreElements()) {
                   paramName = (String) params.nextElement();
                   paramValues = arg0.getParameterValues(paramName);
                   //System.out.println("\nParameter name is " + paramName);
                   for (int i = 0; i < paramValues.length; i++) {
                        //System.out.println(", value " + i + " is " +paramValues.toString());
    //########################End######################################
    long start = System.currentTimeMillis();
    try {
    acquireSemaphore(arg0);
    } catch (InterruptedException e) {
    throw new ServletException("Can not serialize requests.");
    try {
    if (checkFlow(arg0, arg1)) {
    // System.out.println("[<SiiamSinglePointOfEntry> <doPost>] - after checkflow arg1 " + arg1);
    super.doPost(arg0, arg1);
    } finally {
    releaseSemaphore(arg0);
    protected void doGet(HttpServletRequest arg0, HttpServletResponse arg1)
    throws ServletException, IOException {
    // System.out.println("[<SiiamSinglePointOfEntry> <doGet>] - In doGet");
    /* capture user input in http request This code is written to only for debuging purpose */
         //########################Start####################################
              Enumeration params = arg0.getParameterNames();
              String paramName = null;
              String[] paramValues = null;
              //System.out.println("[<SiiamSinglePointOfEntry> <doGet>] - user input name value pair");
              while (params.hasMoreElements()) {
                   paramName = (String) params.nextElement();
                   paramValues = arg0.getParameterValues(paramName);
              //     System.out.println("\nParameter name is " + paramName);
                   for (int i = 0; i < paramValues.length; i++) {
                        //System.out.println(", value " + i + " is " +paramValues[i].toString());
    //########################End######################################
    long start = System.currentTimeMillis();
    try {
    acquireSemaphore(arg0);
    } catch (InterruptedException e) {
    throw new ServletException("Can not serialize requests.");
    try {
    if (checkFlow(arg0, arg1)) {
                   //System.out.println("[<SiiamSinglePointOfEntry> <doGet>] - after checkflow arg1 " + arg1);
    super.doGet(arg0, arg1);
    } finally {
    releaseSemaphore(arg0);
    // Protected -----------------------------------------------------
    protected boolean doPreExchange(GrndsExchangeContext ctx_)
    throws ServletException, IOException {
    // Dump the session attributes
    HttpSession session = ctx_.getSession();
    Enumeration enumVar = session.getAttributeNames();
    Collection <Object> sessionKeys = new ArrayList<Object>();
    while (enumVar.hasMoreElements()) {
    sessionKeys.add(enumVar.nextElement());
    if ( _log.isDebugEnabled() ) {
    _log.debug("Session attributes {" + sessionKeys + "}");
    super.doPreExchange(ctx_);
    Integer servletDepth =
    (Integer) ctx_.getSession().getAttribute("perf.count");
    if (null == servletDepth || servletDepth.intValue() == 0) {
    ctx_.getSession().setAttribute(
    "perf.start",
    new Long(System.currentTimeMillis()));
    ctx_.getSession().setAttribute("perf.count", new Integer(1));
    } else {
    ctx_.getSession().setAttribute(
    "perf.count",
    new Integer(servletDepth.intValue() + 1));
    return true;
    protected void doPostExchange(GrndsExchangeContext ctx_)
    throws ServletException, IOException {
    super.doPostExchange(ctx_);
    String escid = (String) ctx_.getSession().getAttribute(SessionKeys.ECSID);
    String caseObjid = "";
    CaseDO caseDO =
    (CaseDO) ctx_.getSession().getAttribute(SessionKeys.CASE_DETAILS);
    if (caseDO != null && caseDO._objid != null) {
    caseObjid = caseDO._objid;
    _log.info("{" + escid + "},{" + caseObjid + "}");
    Integer servletDepth =
    (Integer) ctx_.getSession().getAttribute("perf.count");
    if (servletDepth != null) {
    servletDepth = new Integer(servletDepth.intValue() - 1);
    ctx_.getSession().setAttribute("perf.count", servletDepth);
    if (servletDepth.intValue() == 0) {
    Long startTime =
    (Long) ctx_.getSession().getAttribute("perf.start");
    long duration = System.currentTimeMillis() - startTime.longValue();
    String statisticName =
    doGetConversationName(ctx_.getRequest())
    + "/"
    + doGetCommand(ctx_.getRequest())
    + "/"
    + (String) ctx_.getRequest().getAttribute(
    "grnds_web.command.branch");
    ServletStats servletStats = _holder.findServletStats(statisticName);
    servletStats.getServiceTime().addDuration(duration);
    if (_statsLogger.isDebugEnabled()) {
    StringBuffer servletStatsString = new StringBuffer();
    servletStatsString.append("<ServletStats>");
    servletStatsString.append("{" + statisticName + "},");
    servletStatsString.append(
    "{" + servletStats.getServiceTime().getCount() + "},");
    servletStatsString.append("{" + duration + "},");
    servletStatsString.append(
    + servletStats.getServiceTime().getAvgResponseTime()
    + "}");
    _statsLogger.debug(servletStatsString);
    } else {
    throw new IllegalStateException("Servlet Depth is null in doPostExchange");
    // Private -------------------------------------------------------
    private void acquireSemaphore(HttpServletRequest arg0)
    throws InterruptedException {
    // If the incoming request defines this attribute, then this request
    // has been forwarded by another servlet. In this case, one does not
    // need to acquire the semaphore as the thread is already the owner.
    Integer deepth = (Integer) arg0.getAttribute(SEMAPHORE_OWNER);
    // System.out.println("[<SiiamSinglePointOfEntry> <acquireSemaphore>] - deepth :" +deepth);
    if (null != deepth) {
    deepth = new Integer(deepth.intValue() + 1);
    arg0.setAttribute(SEMAPHORE_OWNER, deepth);
    return;
    //System.out.println("[<SiiamSinglePointOfEntry> <acquireSemaphore>] - trying to get semaphore value from request");
    HttpSession session = arg0.getSession();
    // One serializes the requests.
    Semaphore semaphore;
    // System.out.println("[<SiiamSinglePointOfEntry> <acquireSemaphore>] - http session value : " +session);
    synchronized (session) {
    semaphore = (Semaphore) session.getAttribute(REQUEST_SEMAPHORE);
    //System.out.println("[<SiiamSinglePointOfEntry> <acquireSemaphore>] - semaphore value from session : " +semaphore);
    if (null == semaphore) {
    semaphore = new Semaphore(1);
    session.setAttribute(REQUEST_SEMAPHORE, semaphore);
    semaphore.acquire();
    arg0.setAttribute(SEMAPHORE_OWNER, new Integer(1));
    private void releaseSemaphore(HttpServletRequest arg0) {
    // See acquireSemaphore for more details.
    Integer deepth = (Integer) arg0.getAttribute(SEMAPHORE_OWNER);
    int curDeepth = deepth.intValue();
    if (1 < curDeepth) {
    deepth = new Integer(curDeepth - 1);
    arg0.setAttribute(SEMAPHORE_OWNER, deepth);
    return;
    HttpSession session = arg0.getSession();
    // One serializes the requests.
    Semaphore semaphore;
    synchronized (session) {
    semaphore = (Semaphore) session.getAttribute(REQUEST_SEMAPHORE);
    semaphore.release();
    arg0.removeAttribute(SEMAPHORE_OWNER);
         * Check that the incoming request is valid, i.e. not out-of-context.
         * <P>
         * One uses the ScreenFlow object stored in session
         * (SessionKeys.SCREENS_FLOW) in order to perform this validation.
         * <P>
         * If the request is out-of-context, then one forwards the process to the
         * last screen defined by the ScreenFlow object.
         * @return true if the incoming request is valid and false otherwise.
    private boolean checkFlow(HttpServletRequest arg0, HttpServletResponse arg1)
    throws ServletException, IOException {
         // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - in checkFlow");
    HttpSession session = arg0.getSession();
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -session " + session);
    ScreenFlow screenFlow =
    (ScreenFlow) session.getAttribute(SessionKeys.SCREENS_FLOW);
    //System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -screenFlow " + screenFlow);
    if (null == screenFlow) {
    screenFlow = new ScreenFlow();
    session.setAttribute(SessionKeys.SCREENS_FLOW, screenFlow);
    return true;
    String nextScreen = arg0.getServletPath() + arg0.getPathInfo();
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -nextScreen " + nextScreen);
    // The ScreenFlow object records the URI + the query string.
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - arg0.getQueryString() " + arg0.getQueryString());
    if (null != arg0.getQueryString()) {
              //System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - in querystring null");
    nextScreen += "?" + arg0.getQueryString();
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -nextScreen " + nextScreen);
    if (!screenFlow.isInContext(nextScreen)) {
              // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - in not isInContext");
    screenFlow.setSnapshotContext(arg0);
    // Add an error message corresponding to the out-of-context
    // navigation.
    Map errorMap = (Map) arg0.getAttribute(JspKeys.ERRORS_REQUEST_KEY);
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -errorMap " + errorMap);
    if (null == errorMap) {
    errorMap = new HashMap();
    System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] -errorMap in null" + errorMap);
    arg0.setAttribute(JspKeys.ERRORS_REQUEST_KEY, errorMap);
    errorMap.put("OCM", screenFlow.getOutOfContextErrorMessage());
    // dispatch to the previous screen defined by screenFlow.
    arg0.getRequestDispatcher(screenFlow.getLastURI()).forward(arg0, arg1);
    // System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - before return false");
    return false;
    //System.out.println("[<SiiamSinglePointOfEntry> <checkFlow>] - before return true");
    return true;
    // Inner classes -------------------------------------------------

  • Performance issues with class loader on Windows server

    We are observing some performance issues in our application. We are Using weblogic 11g with Java6 on a windows 2003 server
    The thread dumps indicate many threads are waiting in queue for the native file methods:
    "[ACTIVE] ExecuteThread: '106' for queue: 'weblogic.kernel.Default (self-tuning)'" RUNNABLE
         java.io.WinNTFileSystem.getBooleanAttributes(Native Method)
         java.io.File.exists(Unknown Source)
         weblogic.utils.classloaders.ClasspathClassFinder.getFileSource(ClasspathClassFinder.java:398)
         weblogic.utils.classloaders.ClasspathClassFinder.getSourcesInternal(ClasspathClassFinder.java:347)
         weblogic.utils.classloaders.ClasspathClassFinder.getSource(ClasspathClassFinder.java:316)
         weblogic.application.io.ManifestFinder.getSource(ManifestFinder.java:75)
         weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:67)
         weblogic.application.utils.CompositeWebAppFinder.getSource(CompositeWebAppFinder.java:71)
         weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:67)
         weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:67)
         weblogic.utils.classloaders.CodeGenClassFinder.getSource(CodeGenClassFinder.java:33)
         weblogic.utils.classloaders.GenericClassLoader.findResource(GenericClassLoader.java:210)
         weblogic.utils.classloaders.GenericClassLoader.getResourceInternal(GenericClassLoader.java:160)
         weblogic.utils.classloaders.GenericClassLoader.getResource(GenericClassLoader.java:182)
         java.lang.ClassLoader.getResourceAsStream(Unknown Source)
         javax.xml.parsers.SecuritySupport$4.run(Unknown Source)
         java.security.AccessController.doPrivileged(Native Method)
         javax.xml.parsers.SecuritySupport.getResourceAsStream(Unknown Source)
         javax.xml.parsers.FactoryFinder.findJarServiceProvider(Unknown Source)
         javax.xml.parsers.FactoryFinder.find(Unknown Source)
         javax.xml.parsers.DocumentBuilderFactory.newInstance(Unknown Source)
         org.ajax4jsf.context.ResponseWriterContentHandler.<init>(ResponseWriterContentHandler.java:48)
         org.ajax4jsf.context.ViewResources$HeadResponseWriter.<init>(ViewResources.java:259)
         org.ajax4jsf.context.ViewResources.processHeadResources(ViewResources.java:445)
         org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:193)
         org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
         org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
    On googling this seems to be an issue with java file handling on windows servers and I couldn't find a solution yet. Any recommendation or pointer is appreciated

    Hi shubhu,
    I just analyzed your partial Thread Dump data, the problem is that the ajax4jsf framework ResponseWriterContentHandler triggers internally a new instance of the DocumentBuilderFactory; every time; triggering heavy IO contention because of Class loader / JAR file search operations.
    Too many of these IO operations under heavy load will create excessive contention and severe performance degradation; regardless of the OS you are running your JVM on.
    Please review the link below and see if this is related to your problem.. This is a known issue in JBOSS JIRA when using RichFaces / ajaxJSF.
    https://issues.jboss.org/browse/JBPAPP-6166
    Regards,
    P-H
    http://javaeesupportpatterns.blogspot.com/

  • Issue with Integrated Weblogic Server in JDeveloper

    Hi
    I'm using JDeveloper version: 11.1.1.7
    I'm facing issue with the Integrated Weblogic server in JDeveloper.
    When I run the server, the log says as follows:
    *** Using port 7101 ***
    D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms768m -Xmx768m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\lib\sdoapi.jar;D:\fmwps6\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;D:\fmwps6\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\fmwps6\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Java\JDK16~1.0_5\lib\tools.jar;D:\fmwps6\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\fmwps6\WLSERV~1.3\server\lib\weblogic.jar;D:\fmwps6\modules\features\weblogic.server.modules_10.3.5.0.jar;D:\fmwps6\WLSERV~1.3\server\lib\webservices.jar;D:\fmwps6\modules\ORGAPA~1.1/lib/ant-all.jar;D:\fmwps6\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\fmwps6\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;D:\fmwps6\WLSERV~1.3\common\derby\lib\derbyclient.jar;D:\fmwps6\WLSERV~1.3\server\lib\xqrl.jar;;D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\config;D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\lib\stringtemplate-2.3b6.jar
    PATH=D:\fmwps6\patch_wls1035\profiles\default\native;D:\fmwps6\patch_jdev1111\profiles\default\native;D:\fmwps6\WLSERV~1.3\server\native\win\x64;D:\fmwps6\WLSERV~1.3\server\bin;D:\fmwps6\modules\ORGAPA~1.1\bin;D:\Java\JDK16~1.0_5\jre\bin;D:\Java\JDK16~1.0_5\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\oraclexe\app\oracle\product\11.2.0\server\bin;;D:\ADE\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;D:\Java\jdk1.6.0_51\bin;D:\Softwares\apache-ant-1.7.1\bin;C:\Program Files (x86)\Windows Live\Shared;D:\fmwps6\WLSERV~1.3\server\native\win\x64\oci920_8
    *  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        *
    starting weblogic with Java version:
    java version "1.6.0_51"
    Java(TM) SE Runtime Environment (build 1.6.0_51-b31)
    Java HotSpot(TM) 64-Bit Server VM (build 20.51-b02, mixed mode)
    Starting WLS with line:
    D:\Java\JDK16~1.0_5\bin\java -client   -Xms768m -Xmx768m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=D:\fmwps6\WLSERV~1.3\server\lib\weblogic.policy -agentlib:jdwp=transport=dt_socket,server=y,address=49879 -Djavax.net.ssl.trustStore=D:\fmwps6\wlserver_10.3\server\lib\DemoTrust.jks -Dhttp.proxyHost=www-proxy.idc.oracle.com -Dhttp.proxyPort=80 "-Dhttp.nonProxyHosts=localhost|127.0.0.1|rnaguban-in" -Dhttps.proxyHost=www-proxy.idc.oracle.com -Dhttps.proxyPort=80 "-Dhttps.nonProxyHosts=localhost|127.0.0.1|rnaguban-in" -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true  -Duim.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM -Dweblogic.log.Log4jLoggingEnabled_uim=true -Dlog4j.configuration_uim=loggingconfig.xml -Duim.logging.watchdog.timer=5000 -Djava.io.tmpdir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\tmp -Dweblogic.management.discover.retries=6 -DtestConfig.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\testConfig -Dsun.lang.ClassLoader.allowArraySyntax=true  -XX:-UseSSE42Intrinsics -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.authz=ACC -Xverify:none  -da -Dplatform.home=D:\fmwps6\WLSERV~1.3 -Dwls.home=D:\fmwps6\WLSERV~1.3\server -Dweblogic.home=D:\fmwps6\WLSERV~1.3\server  -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=D:\fmwps6\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1 -Djrockit.optfile=D:\fmwps6\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1  -Digf.arisidbeans.carmlloc=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\carml  -Digf.arisidstack.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=D:\fmwps6\ORACLE~1\modules\oracle.ossoiap_11.1.1,D:\fmwps6\ORACLE~1\modules\oracle.oamprovider_11.1.1,D:\fmwps6\ORACLE~1\modules\oracle.jps_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol  -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\oracle\store\gmds   -Dweblogic.management.discover=true  -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=D:\fmwps6\patch_wls1035\profiles\default\sysext_manifest_classpath;D:\fmwps6\patch_jdev1111\profiles\default\sysext_manifest_classpath  weblogic.Server
    Listening for transport dt_socket at address: 49879
    Debugger connected to local process.
    <Aug 16, 2013 7:19:43 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Aug 16, 2013 7:19:43 PM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Aug 16, 2013 7:19:44 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.51-b02 from Sun Microsystems Inc.>
    <Aug 16, 2013 7:19:44 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for BUG13114768 Sat Jan 21 16:14:44 IST 2012
    WebLogic Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 16, 2013 7:19:47 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00115. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Aug 16, 2013 7:19:56 PM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Aug 16, 2013 7:20:00 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:20:00 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log00066. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log.>
    Aug 16, 2013 7:20:05 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    Aug 16, 2013 7:20:05 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    <Aug 16, 2013 7:20:18 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Aug 16, 2013 7:20:18 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 16, 2013 7:20:20 PM IST> <Warning> <JDBC> <BEA-001552> <The Logging Last Resource (LLR) data source InventoryTxDataSource will not function when it is a participant in a global transaction that spans multiple WebLogic Server instances because remote JDBC support is disabled. LLR will function in single-server configurations.>
    <Aug 16, 2013 7:20:22 PM IST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "mds-commsRepository". Connections will not be tested.>
    <Aug 16, 2013 7:20:39 PM IST> <Warning> <Security> <BEA-090668> <Ignored deployment of role "Admin" for resource "type=<url>, application=DMS Application#11.1.1.1.0, contextPath=/dms, uri=/">
    <Aug 16, 2013 7:20:58 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application UIMCMWSAdapter is not versioned.>
    <Aug 16, 2013 7:21:11 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application oracle.communications.inventory is not versioned.>
    <TableBuilder> <_buildSchema> Metric table "webcache:request_filter_denied_stats" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Information" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Performance" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Response" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Servlet_Response" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Remote_Bridge_Elements" has no key column.  It will not be collected.
    <ConfigurationUtil> <getProperties> Could not load runtime-poms.properties
    <Aug 16, 2013 7:21:52 PM IST> <Error> <Net> <BEA-000903> <Failed to communicate with proxy: www-proxy.idc.oracle.com/80. Will try connection www.terracotta.org/80 now.
    java.net.UnknownHostException: www-proxy.idc.oracle.com
      at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
      at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:876)
      at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1229)
      at java.net.InetAddress.getAllByName0(InetAddress.java:1180)
      at java.net.InetAddress.getAllByName(InetAddress.java:1110)
      Truncated. see log file for complete stacktrace
    >
    <Aug 16, 2013 7:21:53 PM IST> <Error> <Net> <BEA-000903> <Failed to communicate with proxy: www-proxy.idc.oracle.com/80. Will try connection svn.terracotta.org/80 now.
    java.net.UnknownHostException: www-proxy.idc.oracle.com
      at java.net.InetAddress.getAllByName0(InetAddress.java:1184)
      at java.net.InetAddress.getAllByName(InetAddress.java:1110)
      at java.net.InetAddress.getAllByName(InetAddress.java:1046)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:309)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:414)
      Truncated. see log file for complete stacktrace
    >
    <LoggerHelper> <log> Cannot map nonserializable type "interface oracle.adf.mbean.share.config.runtime.resourcebundle.BundleListType" to Open MBean Type for mbean interface oracle.adf.mbean.share.config.runtime.resourcebundle.AdfResourceBundleConfigMXBean, attribute BundleList.
    <AdfDiagnosticsJarsVersionDumpImpl> <dumpVersionInfo> Path of the jars version dump :D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\oracle.communications.inventory-Versions.csv
    <FeatureUtils> <_resolveFeatures> Ignoring feature-dependency on feature "AdfDvtCommon".  No such feature exists.
    Warning: Starting ADF Library jar post-deployment on WebLogic Server. Is "provider-lazy-inited" init-param missing from LibraryFilter? Ignore this warning if the ADFJspResourceProvider is not being used.
    Started: ADF Library non-ADFJspResourceProvider post-deployment
    Finished: ADF Library non-ADFJspResourceProvider post-deployment (millis): 223
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00118. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 14.96.8.250:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    But it doesn't list the server while deploying the application.
    I don't see the issue in my office network. But I encounter this problem when I work at my home.
    Ideally it should show the following lines after server is started:
    DefaultServer startup time: 195467 ms.
    DefaultServer started.
    This is not happening if i run the server without network.
    How can I fix this problem?
    Thanks
    Ravi

    I see some message about a proxy. Have you checked that you can use the proxy from you network?
    If not you should turn the proxy off.
    Timo

  • Wine taking hell lot of time to do anyting and issue with amibroker

    I installed wine and winetools. Initially, there were some problems with openGl, etc., which resolved after I enabled "glx" and "dri" in xorg.conf. Now, wine was supposed to work but it did not, it seemed to hang. Then i came across this http://bbs.archlinux.org/viewtopic.php?id=24345
    This suggested me to wait and i did the same. After half an hour winecfg finally started. Then I ran "wine some-set-up-file.exe" and it too 10 minutes to see the installer. I installed a program called amibroker and on starting the program (it too 5 minutes to start), there was an issue with MFC42.dll which I downloaded  and saved in ~/.wine/drive_c/windows/system32.
    Then on starting the program again, i got this error:
    [shantanu@bluehead ~]$ wine ~/.wine/drive_c/Program\ Files/AmiBroker/Broker.exe
    Warning: could not find DOS drive for current working directory '/home/shantanu', starting in the Windows directory.
    wine: Call from 0x6782aa18 to unimplemented function MFC42.DLL.6571, aborting
    wine: Unimplemented function MFC42.DLL.6571 called at address 0x6782aa18 (thread 0009), starting debugger...
    Unhandled exception: unimplemented function MFC42.DLL.6571 called in 32-bit code (0x7efa2f58).
    Register dump:
    CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
    EIP:7efa2f58 ESP:0033fc98 EBP:0033fcfc EFLAGS:00200206( - 00 - -IP1)
    EAX:000019ab EBX:7efe46cc ECX:00000000 EDX:678a0660
    ESI:0033fca4 EDI:6789e0d0
    Stack dump:
    0x0033fc98: 7efe46cc 0033fcbc 7efa408b 80000100
    0x0033fca8: 00000001 00000000 6782aa18 00000002
    0x0033fcb8: 67882b68 000019ab 0033fce0 6781adfd
    0x0033fcc8: 678a0660 00000000 0000003d 00000020
    0x0033fcd8: 0000005a 00000000 00000078 6781afe5
    0x0033fce8: 00000000 00000000 00000000 7ecd459c
    Backtrace:
    =>1 0x7efa2f58 stub_entry_point+0x58() in ntdll (0x0033fcfc)
    2 0x6782aa18 in amixtp (+0x2aa18) (0x0033fd4c)
    3 0x6786614e in amixtp (+0x6614e) (0x0033fd78)
    4 0x7efa1fc5 call_dll_entry_point+0x15() in ntdll (0x0033fd98)
    5 0x7efa3bed MODULE_InitDLL+0x8d() in ntdll (0x0033fe28)
    6 0x7efa440d process_attach+0x12d() in ntdll (0x0033fe68)
    7 0x7efa4352 process_attach+0x72() in ntdll (0x0033fea8)
    8 0x7efa6450 LdrInitializeThunk+0x2d0() in ntdll (0x0033ff08)
    9 0x7ee87e65 start_process+0xb5() in kernel32 (0x0033ffe8)
    10 0xb7e9f6f7 wine_switch_to_stack+0x17() in libwine.so.1 (0x00000000)
    0x7efa2f58 stub_entry_point+0x58 in ntdll: subl $4,%esp
    Modules:
    Module Address Debug info Name (91 modules)
    PE 400000- 545000 Deferred broker
    PE 10000000-10006000 Deferred brokey
    PE 10100000-10142000 Deferred cooltool
    PE 10200000-10236000 Deferred misctool
    ELF 41191000-41194000 Deferred libxau.so.6
    ELF 41196000-4119b000 Deferred libxdmcp.so.6
    ELF 4129f000-412ad000 Deferred libxext.so.6
    ELF 412af000-412c7000 Deferred libice.so.6
    ELF 41480000-41486000 Deferred libxrandr.so.2
    ELF 414d9000-414f8000 Deferred libexpat.so.1
    ELF 414fa000-41525000 Deferred libfontconfig.so.1
    ELF 41527000-4152f000 Deferred libxrender.so.1
    ELF 415b0000-415b5000 Deferred libxfixes.so.3
    ELF 415b7000-415ba000 Deferred libxinerama.so.1
    ELF 415bc000-415c5000 Deferred libxcursor.so.1
    ELF 416da000-416df000 Deferred libxxf86vm.so.1
    ELF 416fb000-4175d000 Deferred libgl.so.1
    ELF 4175f000-41768000 Deferred libdrm.so.2
    ELF 4185b000-4186b000 Deferred libtasn1.so.3
    ELF 426f7000-426fb000 Deferred libgpg-error.so.0
    ELF 42959000-429ab000 Deferred libgcrypt.so.11
    ELF 4585c000-4588b000 Deferred libcups.so.2
    PE 5f400000-5f4ed000 Deferred mfc42
    PE 67800000-678cd000 Export amixtp
    ELF 7bf00000-7bf03000 Deferred <wine-loader>
    ELF 7df96000-7dfaa000 Deferred msimg32<elf>
    \-PE 7dfa0000-7dfaa000 \ msimg32
    ELF 7dfaa000-7dfbf000 Deferred midimap<elf>
    \-PE 7dfb0000-7dfbf000 \ midimap
    ELF 7dfbf000-7dfe5000 Deferred msacm32<elf>
    \-PE 7dfd0000-7dfe5000 \ msacm32
    ELF 7dfe5000-7dffd000 Deferred msacm32<elf>
    \-PE 7dff0000-7dffd000 \ msacm32
    ELF 7dffd000-7e039000 Deferred wineoss<elf>
    \-PE 7e000000-7e039000 \ wineoss
    ELF 7e039000-7e03f000 Deferred libnss_dns.so.2
    ELF 7e03f000-7e055000 Deferred libnsl.so.1
    ELF 7e055000-7e083000 Deferred libcrypt.so.1
    ELF 7e0f6000-7e163000 Deferred libgnutls.so.13
    ELF 7e1c3000-7e1f5000 Deferred uxtheme<elf>
    \-PE 7e1d0000-7e1f5000 \ uxtheme
    ELF 7e28b000-7e378000 Deferred libx11.so.6
    ELF 7e3a3000-7e3ab000 Deferred libsm.so.6
    ELF 7e3ab000-7e43a000 Deferred winex11<elf>
    \-PE 7e3c0000-7e43a000 \ winex11
    ELF 7e494000-7e4a6000 Deferred libz.so.1
    ELF 7e4a6000-7e521000 Deferred libfreetype.so.6
    ELF 7e521000-7e5af000 Deferred winmm<elf>
    \-PE 7e530000-7e5af000 \ winmm
    ELF 7e5af000-7e5c3000 Deferred lz32<elf>
    \-PE 7e5c0000-7e5c3000 \ lz32
    ELF 7e5c3000-7e5dc000 Deferred version<elf>
    \-PE 7e5d0000-7e5dc000 \ version
    ELF 7e5dc000-7e5ee000 Deferred libresolv.so.2
    ELF 7e5ee000-7e60c000 Deferred iphlpapi<elf>
    \-PE 7e600000-7e60c000 \ iphlpapi
    ELF 7e60c000-7e661000 Deferred rpcrt4<elf>
    \-PE 7e620000-7e661000 \ rpcrt4
    ELF 7e661000-7e6fd000 Deferred ole32<elf>
    \-PE 7e670000-7e6fd000 \ ole32
    ELF 7e6fd000-7e796000 Deferred oleaut32<elf>
    \-PE 7e710000-7e796000 \ oleaut32
    ELF 7e796000-7e7c8000 Deferred winspool<elf>
    \-PE 7e7a0000-7e7c8000 \ winspool
    ELF 7e7c8000-7e885000 Deferred comctl32<elf>
    \-PE 7e7d0000-7e885000 \ comctl32
    ELF 7e885000-7e8dd000 Deferred shlwapi<elf>
    \-PE 7e890000-7e8dd000 \ shlwapi
    ELF 7e8dd000-7e9d7000 Deferred shell32<elf>
    \-PE 7e8f0000-7e9d7000 \ shell32
    ELF 7e9d7000-7ea77000 Deferred comdlg32<elf>
    \-PE 7e9e0000-7ea77000 \ comdlg32
    ELF 7ea77000-7ebb1000 Deferred user32<elf>
    \-PE 7ea90000-7ebb1000 \ user32
    ELF 7ebb1000-7ebf7000 Deferred advapi32<elf>
    \-PE 7ebc0000-7ebf7000 \ advapi32
    ELF 7ebf7000-7ec8c000 Deferred gdi32<elf>
    \-PE 7ec10000-7ec8c000 \ gdi32
    ELF 7ec8c000-7ecf0000 Deferred msvcrt<elf>
    \-PE 7eca0000-7ecf0000 \ msvcrt
    ELF 7ee18000-7ef3b000 Export kernel32<elf>
    \-PE 7ee30000-7ef3b000 \ kernel32
    ELF 7ef3b000-7ef45000 Deferred libnss_files.so.2
    ELF 7ef45000-7ef6a000 Deferred libm.so.6
    ELF 7ef6a000-7f000000 Export ntdll<elf>
    \-PE 7ef80000-7f000000 \ ntdll
    ELF b7d41000-b7d45000 Deferred libdl.so.2
    ELF b7d45000-b7e70000 Deferred libc.so.6
    ELF b7e70000-b7e87000 Deferred libpthread.so.0
    ELF b7e98000-b7fa9000 Export libwine.so.1
    ELF b7faa000-b7fc6000 Deferred ld-linux.so.2
    Threads:
    process tid prio (all id:s are in hex)
    0000000a
    0000000c 0
    0000000b 0
    00000008 (D) C:\Program Files\AmiBroker\Broker.exe
    00000009 0 <==
    [shantanu@bluehead ~]$
    I have no idea abt this. Any solution guys.
    Last edited by ravisghosh (2007-05-27 21:22:23)

    Instead of writing the whole path of the exe file wth wine, I went into the Amibroker folder in a console by doing cd and then ran
    wine Broker.exe
    Then Amibroker worked fine. I dont know why. but its working.
    however, it gives this error in console
    Warning: could not find DOS drive for current working directory '/home/shantanu', starting in the Windows directory.
    err:module:import_dll Library qpdll.dll (which is needed by L"C:\\Program Files\\AmiBroker\\Plugins\\QP2.dll") not found
    err:module:import_dll Library FastTrack.dll (which is needed by L"C:\\Program Files\\AmiBroker\\Plugins\\FT.dll") not found
    [shantanu@bluehead ~]$
    On searching my windows directory, I could not find anything like qpdll.dll or FastTrack.dll. On searching web also, I could not find anything like qpdll.dll, but FastTrack.dll seems to be a malware!!!

Maybe you are looking for

  • Cisco ASA 5505 Password Problem

    I recently ran into a telnet, console, and enable password issue that was unexpected and I am hoping someone can explain what happened.  I had two working Cisco ASA 5505's that were two end-points of a Site-to-Site VPN.  I had used the ASDM file mana

  • Photoshop Elements 5.0--Deactivate

    How do I deactivate Photoshop Elements 5.0 and Premier Elements 3.0? Currently, my computer is not hooked up to the internet--I realize it needs to be before deactivating (not a problem). But when I look at PS Elements or Premier Elements>Help, there

  • IMail Backup NOW Question, and more b/u

    Hi:   My G5 (OX 10.4) is crashing and ready to die a slow (maybe fast) death.  It starts up once in a while....but mostly freezes on startup.  I tried to reinstall the original disk, but half way through it detects errors and can't continue..   It is

  • Adobe Flash Player ... Apparently Apple does not recognize.  How to access sites that require it?

    Is there an app that will allow me to go to sites that use adobe flash player?  How to get around this?

  • Dsc 8.0.1 alarm behavior

    I am moving from DSC 7.1 to 8.0.1 (and as soon as it is here 8.2) and I am noticing some differences in alarming. In DSC 7.1 when a tag moved into alarm an "alarm instance" was generated with a "set time" corresponding to when the tag alarmed.  When