Bytecode problem

Hi all,
I have following piecse of byte code which is not running:
0 bipush 0
2 anewarray #4 <java/lang/Object>
5 astore 1
7 sipush 1
10 aload_0
11 aload 1
13 invokestatic #30 <com/test/AClass.aMethod>
16 pop
17 return
The source declaration of the called method aMethod is:
public static Object aMethod(int a, Object b, Object[] c)
The constructor you see the byte code here:
public SuperCrazyClass()
When i try to execute the Constructor i get following error printed in console:
Exception in thread "main" java.lang.VerifyError: (class: SuperCrazyClass, method: <init> signature: ()V) Expecting to find object/array on stack
As you know <init> is the internal name of all constructors, together with the signature you can see that error must be located inside the bytecode snippet above. That byte code snippet is generate by custom binary instrumentation framework i wrote and it works for a lot of different methods but in that case, and i really don't know what is wrong with it, it doesn't.
Any idea what I'm doing wrong ?
Regards,
bgnahm
PS: I previously posted also in the Hotspot Forum, but i think this question fits better here...sorry for that

bgnahm wrote:
PS: I previously posted also in the Hotspot Forum, but i think this question fits better here...sorry for thatNo, the other forum is at least more related to the class format. I'm locking this thread. People who are reading this can still answer the original thread at:
[http://forums.sun.com/thread.jspa?threadID=5443852]
Kaj

Similar Messages

  • Problem in Stringecho "no bytecode available"

    Firstly, thanks for this initiative, I think its greaT!
    After following all the instructions in the Getting Started
    Page, I reached the 22nd Step(Windows) and wrote
    mxmlc.exe -library-path+=../stringecho.swc
    --target-player=10.0.0 EchoTest.as
    in the command line.
    I got the following output and error: "Loading configuration
    file E:\flex3sdk\frameworks\flex-config.xml
    D:\alchemy_home\samples\stringecho\stringecho.swc(cmodule/stringecho/CLibInit):
    Error: No bytecode is available."
    Does anyone know why this happened?
    Also, I'm using FlashDevelop, is it posible to get this
    working with the refered IDE?
    Thanks

    I had this problem as well.
    I deleted stringecho.swc and after that when i compiled again i got this error:
    [Compiler] Error #1063: Unable to open file: /alchemy-cygwin-v0.5a/flashlibs/global.abc.
    It appeared that on Windows you have to set the access rights to the alchemy folder properly. Otherwise the compiler can not access all necessary folders.

  • Problem with threads in j2me

    im using jdk 1.6 with java wtk 2.1
    ya i know..
    2.1 is a jdk1.4 source
    but im using souce as 1.4 during compiliation so thats not the prob
    this is my code
    package org.learn;
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.lcdui.Alert;
    import javax.microedition.lcdui.Display;
    public class thtest extends MIDlet
    Thread t;
    public void startApp()
    Alert a=new Alert("hello");
    a.setString("hello");
    Alert b=new Alert("world");
    b.setString("world");
    Display d = Display.getDisplay(this );
    d.setCurrent(a);
    t=Thread.currentThread();
    try{
    t.sleep(10000);
    catch (Exception e){}
    d.setCurrent(b);
    public void pauseApp()
    public void destroyApp(boolean unconditional)
    its just supposed to pause between the alerts using threads
    however when i run it using the wtk, the emulator run properly but when i launch the app, it stops executing giving me this:
    "Error verifying method org/learn/thtest startApp()V
    Approximate bytecode offset 49: Inconsistent or missing stackmap at target
    %the stack info%
    Execution completed.
    437782 bytecodes executed
    9 thread switches
    486 classes in the system (including system classes)
    2506 dynamic objects allocated (73832 bytes)
    2 garbage collections (60652 bytes collected)
    Execution completed.
    437782 bytecodes executed
    9 thread switches
    486 classes in the system (including system classes)
    ALERT: java/lang/VerifyError: org/learn/thtest.
    2506 dynamic objects allocated (73832 bytes)
    2 garbage collections (60652 bytes collected)
    please can someone help me out with this, is it an error on my part or do i have to set some option.

    Hi gandalf123,
    First, Thread.sleep is a static method, so you don't need to create a Thread object to use it.
    I think the problem is due to the fact you don't preverify your midlet.
    More over, you don't need to double post your question.

  • 1.1 bytecode doesn't work on W2k ie5?

    One step forward and two steps back...
    I compiled my applet using the -target 1.1 option, so that everyone could use my applet without plug-in. I could get it to work with a plug-in, but students for some reason had a hard time following the directions involved in loading the plug-in and complained bitterly...
    So I asked the forum for help, and the suggestion was to compile to 1.1 bytecode. But for some reason, the applet did not work in ie5 on windows 2000. Netscape 6.2 asked me for the 1.3 plug-in when I tried to run it there. (But it already had loaded on it the 1.4 plug-in). The applet did work in Netscape and ie 5 in win98, and (ironically enough!) in ie6 on winxp!
    1) I thought 1.1 bytecode was universal for everything above ie3 and netscape 4!? Is this a false statement?
    2) Is there something with w2k that causes this?
    3) Is there some way to fix this problem for ie in w2k? (Other than to use the plug-in?) Ie returns the error message "applet not inited".
    I am not entirely sure that the applet will run on a computer that doesn't have a plug-in loaded (as I don't have any computers that don't have some sort of plug-in on them).
    The idea was to get my students to be able to run the darn applet with practically anything... but if this doesn't work I'm going back to using the plug-in.
    4) Does the applet run? http://www2.hawaii.edu/~jmcfatri/Java/SimpleFieldMap.html
    Thanks in advance!
    :) Jen

    Actually I don't think w2k is the problem.. I just tried it on my w98 computer with N 4.7, which has plug-in 1.3 and it looks like it is giving me a null pointer on an image which I load in the initialization of the bFieldPanel class.
    The Java Console:
    Netscape Communications Corporation -- Java 1.1.5
    Symantec Java! ByteCode Compiler Version 210.065
    Copyright (C) 1996-97 Symantec Corporation
    java.lang.NullPointerException
    at BFieldPanel.<init>(Compiled Code)
    at SimpleFieldMap.init(Compiled Code)
    at netscape.applet.DerivedAppletFrame$InitAppletEvent.dispatch(Compiled Code)
    at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(Compiled Code)
    java.lang.NullPointerException
    at sun.awt.windows.WToolkit.checkScrImage(Compiled Code)
    at sun.awt.windows.WToolkit.checkImage(Compiled Code)
    at java.awt.Component.checkImage(Compiled Code)
    at java.awt.ImageMediaEntry.getStatus(Compiled Code)
    at java.awt.MediaTracker.statusID(Compiled Code)
    at java.awt.MediaTracker.waitForID(Compiled Code)
    at java.awt.MediaTracker.waitForID(Compiled Code)
    at MediaUtil.waitForImage(Compiled Code)
    at BFieldPanel.<init>(Compiled Code)
    at SimpleFieldMap.init(Compiled Code)
    *-at netscape.applet.DerivedAppletFrame$InitAppletEvent.dispatch(Compiled Code)
    at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(Compiled Code)

  • NW2004s preview install problem (dispatcher)

    Hi,
    I am trying to install the preview version of NW2004s workplace on my XP machine/2GB but   I don't maange  because the J2E engine doesn't start. The jcontrol process is started correctly, but the dispatcher one never manage to start...
    After 20 minutes the system is giving up.
    Here are the log of the jcontrol process:
    trc file: "F:\usr\sap\J2E\JC00\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 6064
    system name : J2E
    system nr.  : 00
    started at  : Thu Dec 28 14:41:10 2006
    arguments       :
           arg[00] : F:\usr\sap\J2E\JC00\exe\jcontrol.EXE
           arg[01] : pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    [Thr 3196] Thu Dec 28 14:41:10 2006
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.en.host=lofoten] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC00lofoten] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : lofoten
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : lofoten
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] sdm                  : F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 3196] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:41:13 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0029947
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 3196] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 3196] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0029947
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] Thu Dec 28 14:41:42 2006
    [Thr 3196] JControlExecuteBootstrap: read instance values after global bootstrap
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC00lofoten] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.en.host=lofoten] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.en.port=3201] [jstartxx.c   841]
    [Thr 3196] *** WARNING => INFO: Unknown property [instance.system.id=0] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties;F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : lofoten
    -> ms port    : 3901
    -> OS libs    : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 3196] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> files [01] : F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : lofoten
    -> ms port    : 3901
    -> os libs    : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID2994700  : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID2994750  : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID2994700            : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID2994750            : F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 3196] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID2994700]
    [Thr 3196] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:41:43 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID2994700]
    -> node name          : dispatcher bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 32M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID002994700
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=bootstrap_ID2994700
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID2994700.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_bootstrap_ID2994700.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_bootstrap_ID2994700
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] Thu Dec 28 14:41:56 2006
    [Thr 3196] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID2994750]
    [Thr 3196] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:41:57 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap_ID2994750]
    -> node name          : server0 bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID002994750
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=bootstrap_ID2994750
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_bootstrap_ID2994750.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_bootstrap_ID2994750.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_bootstrap_ID2994750
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3456] Thu Dec 28 14:42:49 2006
    [Thr 3456] JControlRequestFunc: Thread 3456 started as listener thread for np messages.
    [Thr 3196] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 3196] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) - using -Xmx32m [jstartxx.c   2604]
    [Thr 3196] [Node: dispatcher] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:42:50 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID2994700]
    -> node name          : dispatcher
    -> node type          : dispatcher
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1 -XX:NewSize=5m -XX:MaxNewSize=5m -Drdbms.driverLocation=C:/sapdb/programs/runtime/jar/sapdbc.jar
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 32M
    -> init heap size     : 15M
    -> stack size         : 2M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster\dispatcher
    -> class path         : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 3196] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) - using -Xmx512m [jstartxx.c   2604]
    [Thr 3196] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:42:51 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID2994750]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.xml.sax.driver=com.sap.engine.lib.xml.parser.SAXParser -verbose:gc -Djco.jarm=1 -XX:PermSize=64m -XX:MaxPermSize=128m -XX:NewSize=15m -XX:MaxNewSize=15m -Xdebug -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:PrintGCTimeStamps -XX:UseTLAB -XX:SoftRefLRUPolicyMSPerMB=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -XX:+UseParNewGC -Drdbms.driverLocation=C:/sapdb/programs/runtime/jar/sapdbc.jar
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> init heap size     : 50M
    -> stack size         : 2M
    -> root path          : F:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120000
    [Thr 3196] INFO: Invalid property value [Debbugable=yes]
    [Thr 3196] [Node: SDM] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_13
    [Thr 3196] Thu Dec 28 14:42:52 2006
    [Thr 3196] JStartupICheckFrameworkPackage: can't find framework package F:\usr\sap\J2E\JC00\exe\jvmx.jar
    JStartupIReadSection: read node properties [sdm]
    -> node name          : SDM
    -> node type          : sdm
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_13
    -> java parameters    :
    -> java vm version    : 1.4.2_13-b06
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : F:\usr\sap\J2E\JC00\SDM\program
    -> class path         : F:\usr\sap\J2E\JC00\SDM\program\bin\SDM.jar
    -> OS libs path       : F:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class         : SDMInternal
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : F:\usr\sap\J2E\JC00\exe\jstartup.jar;F:\usr\sap\J2E\JC00\exe\jvmx.jar
    -> shutdown class     : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters         : server sdmhome=F:\usr\sap\J2E\JC00\SDM\program
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    [Thr 3196] JControlMSConnect: attached to message server (lofoten/3901)
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994700
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 5792] JControlMSMessageFunc: Thread 5792 started as listener thread for ms messages.
    [Thr 3196] JControlICheckProcessList: process dispatcher started (PID:5552)
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994750
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_server0.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_server0.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process server0 started (PID:6052)
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[09] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process SDM started (PID:5716)
    [Thr 3196] JControlMSSendLogon: delete SDM logon information (rc=0)
    [Thr 3196] Thu Dec 28 14:43:02 2006
    [Thr 3196] JControlMSSendLogon: insert SDM logon information (port=50018; rc=0)
    [Thr 3196] Thu Dec 28 15:13:02 2006
    [Thr 3196] JControlICheckProcessList: process server0 (pid:6052) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process server0
    [Thr 3196] JControlIResetProcess: [server0] not running -> increase error count (1)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994750 1167313372 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994750
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process server0 started (PID:6008)
    [Thr 3196] Thu Dec 28 15:13:07 2006
    [Thr 3196] JControlICheckProcessList: process dispatcher (pid:5552) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process dispatcher
    [Thr 3196] JControlIResetProcess: [dispatcher] not running -> increase error count (1)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994700 1167313372 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994700
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process dispatcher started (PID:5400)
    [Thr 3196] JControlICheckProcessList: process SDM (pid:5716) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process SDM
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node sdm 1167313372 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process SDM started (PID:2952)
    [Thr 3196] Thu Dec 28 15:13:17 2006
    [Thr 3196] JControlICheckProcessList: process server0 (pid:6008) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process server0
    [Thr 3196] JControlIResetProcess: [server0] not running -> increase error count (2)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994750 1167315182 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994750
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] Thu Dec 28 15:13:18 2006
    [Thr 3196] JControlICheckProcessList: process server0 started (PID:3044)
    [Thr 3196] Thu Dec 28 15:13:23 2006
    [Thr 3196] JControlICheckProcessList: process dispatcher (pid:5400) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process dispatcher
    [Thr 3196] JControlIResetProcess: [dispatcher] not running -> increase error count (2)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994700 1167315187 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994700
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process dispatcher started (PID:2752)
    [Thr 3196] JControlICheckProcessList: process SDM (pid:2952) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process SDM
    [Thr 3196] JControlIResetProcess: [SDM] wasn't stable (rt: 16 sec < 120 sec) -> increase error count (1)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node sdm 1167315187 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process SDM started (PID:4500)
    [Thr 3196] Thu Dec 28 15:13:28 2006
    [Thr 3196] JControlICheckProcessList: process server0 (pid:3044) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process server0
    [Thr 3196] JControlIResetProcess: [server0] not running -> increase error count (3)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994750 1167315198 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994750
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] Thu Dec 28 15:13:29 2006
    [Thr 3196] JControlICheckProcessList: process server0 started (PID:2140)
    [Thr 3196] Thu Dec 28 15:13:39 2006
    [Thr 3196] JControlICheckProcessList: process SDM (pid:4500) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process SDM
    [Thr 3196] JControlIResetProcess: [SDM] wasn't stable (rt: 16 sec < 120 sec) -> increase error count (2)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node sdm 1167315203 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_sdm
    -> arg[03] = -nodeId=2
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=sdm
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_sdm.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_sdm.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_sdm
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process SDM started (PID:4912)
    [Thr 3196] Thu Dec 28 15:13:44 2006
    [Thr 3196] JControlICheckProcessList: process dispatcher (pid:2752) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process dispatcher
    [Thr 3196] JControlIResetProcess: [dispatcher] not running -> increase error count (3)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994700 1167315203 -bz F:\usr\sap\J2E\SYS\global
    JControlStartJLaunch: program = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[00] = F:\usr\sap\J2E\JC00\exe\jlaunch.exe
    -> arg[01] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> arg[02] = -DSAPINFO=J2E_00_dispatcher
    -> arg[03] = -nodeId=0
    -> arg[04] = -file=F:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_6064
    -> arg[06] = -nodeName=ID2994700
    -> arg[07] = -jvmOutFile=F:\usr\sap\J2E\JC00\work\jvm_dispatcher.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=F:\usr\sap\J2E\JC00\work\std_dispatcher.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=F:\usr\sap\J2E\JC00\work\dev_dispatcher
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=F:\usr\sap\J2E\SYS\profile\J2E_JC00_lofoten
    -> lib path = PATH=C:\j2sdk1.4.2_13\jre\bin\server;C:\j2sdk1.4.2_13\jre\bin;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_13\bin;F:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;c:\windows\system32;F:\usr\sap\J2E\JC00\exe;C:\sapdb\programs\pgm;F:\usr\sap\J2E\SYS\exe\uc\NTI386
    [Thr 3196] JControlICheckProcessList: process dispatcher started (PID:3496)
    [Thr 5792] Thu Dec 28 15:14:03 2006
    [Thr 5792] ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    [Thr 5792] *** ERROR => NiIRead: SiRecv failed for hdl 0 / sock 1748
         (SI_ECONN_BROKEN; I4; ST; 192.168.0.6:3901) [nixxi.cpp    4235]
    [Thr 5792] ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    [Thr 5792] *** ERROR => NiIRead: SiRecv failed for hdl 0 / sock 1748
         (SI_ECONN_BROKEN; I4; ST; 192.168.0.6:3901) [nixxi.cpp    4235]
    [Thr 5792] *** ERROR => MsINiRead: NiBufReceive failed (NIECONN_BROKEN) [msxxi.c      2515]
    [Thr 5792] *** ERROR => MsIReadFromHdl: NiRead (rc=NIECONN_BROKEN) [msxxi.c      1677]
    [Thr 5792] Thu Dec 28 15:14:04 2006
    [Thr 5792] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 5792] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 0 / sock 1748
         (SI_ECONN_REFUSE; I4; ST; 192.168.0.6:3901) [nixxi.cpp    2764]
    [Thr 5792] *** ERROR => MsIAttachEx: NiBufConnect to lofoten/3901 failed (rc=NIECONN_REFUSED) [msxxi.c      652]
    [Thr 5792] *** WARNING => Can't reconnect to message server (lofoten/3901) [rc = -100]-> reconnect [jcntrms.c    368]
    [Thr 3196] Thu Dec 28 15:14:09 2006
    [Thr 3196] JControlICheckProcessList: process server0 (pid:2140) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process server0
    [Thr 3196] JControlIResetProcess: [server0] not running -> increase error count (4)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994750 1167315209 -bz F:\usr\sap\J2E\SYS\global
    [Thr 5792] Thu Dec 28 15:14:10 2006
    [Thr 5792] ***LOG Q0I=> NiPConnect2: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 2764]
    [Thr 5792] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 0 / sock 1712
         (SI_ECONN_REFUSE; I4; ST; 192.168.0.6:3901) [nixxi.cpp    2764]
    [Thr 5792] *** ERROR => MsIAttachEx: NiBufConnect to lofoten/3901 failed (rc=NIECONN_REFUSED) [msxxi.c      652]
    [Thr 5792] *** WARNING => Can't reconnect to message server (lofoten/3901) [rc = -100]-> reconnect [jcntrms.c    368]
    [Thr 3196] Thu Dec 28 15:14:14 2006
    [Thr 3196] JControlICheckProcessList: process dispatcher (pid:3496) died (RUN-FLAG)
    [Thr 3196] JControlIResetProcess: reset process dispatcher
    [Thr 3196] JControlIResetProcess: [dispatcher] not running -> increase error count (4)
    [Thr 3196] JControlICheckProcessList: running flight recorder:
         C:\j2sdk1.4.2_13\bin\java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID2994700 1167315224 -bz F:\usr\sap\J2E\SYS\global
    I still don't unbderstand what is my problem...
    Thanks inb advance for your help
    Best regards
    Jean-Guillaume LALANNE

    Hi,
    you'll need at least XP Professional, as XP Home does not allow for different user groups than the predefined, and the installer creates additional groups, or fails, in case of XP Home
    Regards,
    Armin

  • J2EE Engine : some problems !!!

    Hi everyone,
    I have some problems concerning the J2EE Server of the SAP J2EE Engine :
    The color of the process J2EE Server is yellow in the SAP Management Console and his status is always "Starting apps"
    There is the result of the Developer trace of that process :
    What is the matter ???
    trc file: "D:\usr\sap\J2E\JC01\work\dev_server0", trc level: 1, release: "700"
    node name   : ID11120250
    pid         : 2764
    system name : J2E
    system nr.  : 01
    started at  : Wed Dec 05 10:21:37 2007
    arguments       :
           arg[00] : D:\usr\sap\J2E\JC01\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_ahassaine
           arg[02] : -DSAPINFO=J2E_01_server
           arg[03] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC01_ahassaine
    [Thr 4960] Wed Dec 05 10:21:37 2007
    [Thr 4960] *** WARNING => INFO: Unknown property [instance.box.number=J2EJC01ahassaine] [jstartxx.c   841]
    [Thr 4960] *** WARNING => INFO: Unknown property [instance.en.host=ahassaine] [jstartxx.c   841]
    [Thr 4960] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 4960] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties]
    -> ms host    : ahassaine
    -> ms port    : 3900
    -> OS libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : ahassaine
    -> ms port    : 3900
    -> os libs    : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : normal
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID11120200 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID11120250 : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID11120200           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    -> [01] ID11120250           : D:\usr\sap\J2E\JC01\j2ee\cluster\instance.properties
    [Thr 4960] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4960] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 6048] WaitSyncSemThread: Thread 6048 started as semaphore monitor thread.
    [Thr 3024] JLaunchRequestFunc: Thread 3024 started as listener thread for np messages.
    [Thr 4960] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr 4960] CPIC (version=700.2005.12.02)
    [Thr 4960] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 4960] [Node: server0] java home is set by profile parameter
         Java Home: C:\Java
    [Thr 4960] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\J2E\JC01\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID11120250]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : C:\Java
    -> java parameters    : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -XX:MaxPermSize=256M -XX:PermSize=128M -XX:NewSize=30M -XX:MaxNewSize=30M -XX:DisableExplicitGC -verbose:gc -Xloggc:GC.log -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : 1.4.2_09-b05
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 512M
    -> init heap size     : 100M
    -> root path          : D:\usr\sap\J2E\JC01\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\J2E\JC01\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : yes
    -> debug mode         : yes
    -> debug port         : 50121
    -> shutdown timeout   : 120000
    [Thr 4960] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 5280] JLaunchIStartFunc: Thread 5280 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Djco.jarm=1
    -> arg[  9]: -XX:MaxPermSize=256M
    -> arg[ 10]: -XX:PermSize=128M
    -> arg[ 11]: -XX:NewSize=30M
    -> arg[ 12]: -XX:MaxNewSize=30M
    -> arg[ 13]: -XX:+DisableExplicitGC
    -> arg[ 14]: -verbose:gc
    -> arg[ 15]: -Xloggc:GC.log
    -> arg[ 16]: -XX:+PrintGCDetails
    -> arg[ 17]: -XX:+PrintGCTimeStamps
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Dsun.io.useCanonCaches=false
    -> arg[ 20]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 21]: -XX:SurvivorRatio=2
    -> arg[ 22]: -XX:TargetSurvivorRatio=90
    -> arg[ 23]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\J2E\JC01\exe
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\J2E\JC01\exe\jstartup.jar;D:\usr\sap\J2E\JC01\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\Java\jre\bin\server;C:\Java\jre\bin;C:\Java\bin;D:\usr\sap\J2E\JC01\j2ee\os_libs;d:\sapdb\programs\bin;d:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;D:\usr\sap\J2E\SYS\exe\uc\NTI386
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50121
    -> arg[ 32]: -Dmemory.manager=512M
    -> arg[ 33]: -Xmx512M
    -> arg[ 34]: -Xms100M
    -> arg[ 35]: -DLoadBalanceRestricted=no
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=2764
    -> arg[ 38]: -Djstartup.ownHardwareId=G1610100576
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_01_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=01
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=ahassaine_J2E_01
    -> arg[ 46]: -DSAPDBHOST=ahassaine
    -> arg[ 47]: -Dj2ee.dbhost=ahassaine
    Wed Dec 05 10:21:38 2007
    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
    [Thr 5280] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4712] Wed Dec 05 10:21:40 2007
    [Thr 4712] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4712] Wed Dec 05 10:21:42 2007
    [Thr 4712] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4712] JLaunchISetClusterId: set cluster id 11120250
    [Thr 4712] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4712] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 4576] Wed Dec 05 10:22:34 2007
    [Thr 4576] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    Wed Dec 05 10:27:03 2007
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_09-b05 mixed mode):
    "Thread-31" prio=5 tid=0x06b9adb0 nid=0x11ac waiting on condition [70bf000..70bfd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-30" prio=5 tid=0x06b99a60 nid=0x10d0 waiting on condition [707f000..707fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-29" prio=5 tid=0x06b99e90 nid=0xdec waiting on condition [703f000..703fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-28" prio=5 tid=0x06b98310 nid=0x1598 waiting on condition [6fff000..6fffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_Application_Thread[impl:3]_7" prio=5 tid=0x06afee50 nid=0x10f4 in Object.wait() [6fbf000..6fbfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10788> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue.dequeue(ServiceOperationQueue.java:72)
         - locked <0x10f10788> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationQueue)
         at com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationProcessor.run(ServiceOperationProcessor.java:73)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_6" prio=5 tid=0x06b94580 nid=0x11f8 waiting on condition [6f7f000..6f7fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:62)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_5" prio=5 tid=0x06b94cc0 nid=0x11a0 waiting on condition [6bef000..6befd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:89)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:62)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "Thread-27" prio=5 tid=0x06b8b6d0 nid=0x163c waiting on condition [6a2f000..6a2fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.context.impl.UserConfigCache$ValidationThread.run(UserConfigCache.java:148)
    "Thread-26" prio=10 tid=0x06b5e060 nid=0x1784 in Object.wait() [69af000..69afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10870> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0x10f10870> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "JarmCondense" daemon prio=10 tid=0x06b5d0b0 nid=0x8d4 in Object.wait() [6f3f000..6f3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f108b0> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.threadShouldContinue(CondenseThread.java:217)
         - locked <0x10f108b0> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.run(CondenseThread.java:196)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-24" prio=5 tid=0x06b69090 nid=0xdb4 waiting on condition [69ef000..69efd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.fnd.cache.impl.ServerCacheManagerImpl$ValidationThread.run(ServerCacheManagerImpl.java:159)
    "CBS-Binary-Sweeper 11120250/fcf54850-a31b-11dc-ca9b-02004c4f4f50" prio=10 tid=0x06b488a0 nid=0x98c in Object.wait() [6eff000..6effd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10290> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f10290> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS-Deadnode-Detector 11120250/fcf54850-a31b-11dc-ca9b-02004c4f4f50" prio=10 tid=0x00f42550 nid=0x840 in Object.wait() [6ebf000..6ebfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f102d8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f102d8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS Request Orc" prio=10 tid=0x06b3c7d0 nid=0x394 in Object.wait() [6e7f000..6e7fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10320> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f10320> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS TCS-queue Reader" prio=10 tid=0x06b43b20 nid=0x534 waiting on condition [6e3f000..6e3fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.tc.cbs.server.rt.tcs.TCSQueueOrc.run(TCSQueueOrc.java:103)
         at java.lang.Thread.run(Thread.java:534)
    "CBS AccessQueue Orchestrator" prio=10 tid=0x06b43430 nid=0xf48 in Object.wait() [6dff000..6dffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f103b0> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.sync.AccessOrc.run(AccessOrc.java:81)
         - locked <0x10f103b0> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS BSA Orc" prio=10 tid=0x06b35e00 nid=0x228 in Object.wait() [6dbf000..6dbfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f104a0> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f104a0> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS-Pulsar 11120250/fcf54850-a31b-11dc-ca9b-02004c4f4f50" prio=10 tid=0x06b31bf0 nid=0x1394 in Object.wait() [6d7f000..6d7fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f104e8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f104e8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS Resource Orc" prio=10 tid=0x06b322c0 nid=0xf98 in Object.wait() [6d3f000..6d3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10530> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:135)
         - locked <0x10f10530> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-22" prio=10 tid=0x06b21bc0 nid=0x994 in Object.wait() [6cff000..6cffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10a18> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at com.sap.jmx.provider.ProviderConnectionTimer.run(ProviderConnectionTimer.java:31)
         - locked <0x10f10a18> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-21" prio=10 tid=0x00f96130 nid=0x135c in Object.wait() [6cbf000..6cbfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10a30> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jmx.provider.LazyMBeanLoader.run(LazyMBeanLoader.java:133)
         - locked <0x10f10a30> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-20" prio=5 tid=0x06b226d0 nid=0x9f0 waiting on condition [6c6f000..6c6fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:152)
    "Thread-19" prio=5 tid=0x06b15610 nid=0x12d0 waiting on condition [696f000..696fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.forms.co.IFormsTimeoutProcessor.run(IFormsTimeoutProcessor.java:151)
         at java.lang.Thread.run(Thread.java:534)
    "_keystore_managed_system_thread_" prio=10 tid=0x06b0c280 nid=0x1058 in Object.wait() [6c2f000..6c2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10a58> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.keystore.impl.security.SystemThreadWorker.run(SystemThreadWorker.java:56)
         - locked <0x10f10a58> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-18" prio=10 tid=0x06adf1c0 nid=0x1450 waiting on condition [6a6f000..6a6fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.mp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:144)
    "ConnectionSetCleaner Thread (UNMANAGED)." prio=10 tid=0x075f8520 nid=0xc4c in Object.wait() [6aaf000..6aafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x12ecebc0> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
         at com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner.run(ConnectionHashSet.java:682)
         - locked <0x12ecebc0> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
    "SAPEngine_System_Thread[impl:5]_49" prio=5 tid=0x00fafdb0 nid=0x1518 in Object.wait() [692f000..692fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00fae990 nid=0x11d4 in Object.wait() [68ef000..68efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x12308700> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x12308700> (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]_47" prio=5 tid=0x00fad520 nid=0x11dc in Object.wait() [68af000..68afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_46" prio=5 tid=0x00faa150 nid=0x11e0 in Object.wait() [686f000..686fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_45" prio=5 tid=0x00faa4b0 nid=0x12b8 in Object.wait() [682f000..682fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x1246c898> (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 <0x1246c898> (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)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x00fa94b0 nid=0x11e8 in Object.wait() [67ef000..67efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x1246c8c0> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x1246c8c0> (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]_43" prio=5 tid=0x00fa83b0 nid=0x11d0 in Object.wait() [67af000..67afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f10a78> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x10f10a78> (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)
    "SAPEngine_System_Thread[impl:5]_42" prio=5 tid=0x00f64740 nid=0x147c in Object.wait() [676f000..676fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_41" prio=5 tid=0x00fa7a50 nid=0x11d8 in Object.wait() [672f000..672fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00fa68e0 nid=0x1084 in Object.wait() [66ef000..66efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x12308908> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:483)
         - locked <0x12308908> (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)
    "SAPEngine_System_Thread[impl:5]_39" prio=5 tid=0x00fa4020 nid=0x12b4 in Object.wait() [66af000..66afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x00fa47a0 nid=0xe28 in Object.wait() [666f000..666fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x12308a00> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x12308a00> (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]_37" prio=5 tid=0x00fa3620 nid=0x1298 in Object.wait() [662f000..662fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_36" prio=5 tid=0x00fa2190 nid=0x102c in Object.wait() [65ef000..65efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00fa1280 nid=0xf74 in Object.wait() [65af000..65afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00fa0060 nid=0x1078 in Object.wait() [656f000..656fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9f9f0 nid=0x178c in Object.wait() [652f000..652fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9e750 nid=0x698 in Object.wait() [64ef000..64efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9edf0 nid=0x152c in Object.wait() [64af000..64afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_30" prio=5 tid=0x00f9c190 nid=0x16b4 in Object.wait() [646f000..646fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9c5f0 nid=0xc28 in Object.wait() [642f000..642fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9c980 nid=0x9d8 in Object.wait() [63ef000..63efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f9ce90 nid=0xfb8 in Object.wait() [63af000..63afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f98980 nid=0xb30 in Object.wait() [636f000..636fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=5 tid=0x00f98d20 nid=0xb20 in Object.wait() [632f000..632fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_24" prio=5 tid=0x00f5a300 nid=0x1618 in Object.wait() [62ef000..62efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_23" prio=5 tid=0x00f54e90 nid=0x1600 in Object.wait() [626f000..626fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=5 tid=0x00f51830 nid=0x1344 in Object.wait() [622f000..622fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_21" prio=5 tid=0x00f358a0 nid=0x12ac in Object.wait() [61ef000..61efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_20" prio=5 tid=0x00f362b0 nid=0xf8c waiting on condition [61af000..61afd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorTimeoutProcessor.run(CallableObjectExecutorTimeoutProcessor.java:206)
         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]_19" prio=5 tid=0x00f8f1a0 nid=0xfd0 in Object.wait() [616f000..616fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_18" prio=5 tid=0x00f8f4d0 nid=0xb60 in Object.wait() [612f000..612fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f8f8f0 nid=0xf68 in Object.wait() [60af000..60afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f8fc10 nid=0xaf4 in Object.wait() [5fef000..5fefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_15" prio=5 tid=0x00f8e100 nid=0x17c0 in Object.wait() [5f2f000..5f2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_14" prio=5 tid=0x00f8e3b0 nid=0x7e4 in Object.wait() [5eef000..5eefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f8e9a0 nid=0x157c in Object.wait() [5eaf000..5eafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_12" prio=5 tid=0x00f8c220 nid=0x15a4 in Object.wait() [5e6f000..5e6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10f110b0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jms.server.destinationcontainer.AgentThreadSystem.run(AgentThreadSystem.java:148)
         - locked <0x10f110b0> (a java.lang.Object)
         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]_11" prio=5 tid=0x00f8c650 nid=0x10a8 in Object.wait() [5e2f000..5e2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=10 tid=0x00f88720 nid=0x1028 in Object.wait() [5def000..5defd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x120e8a98> (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 <0x120e8a98> (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)
    "SAPJarResourceCloseTimeoutThread" daemon prio=5 tid=0x00f843e0 nid=0x1120 in Object.wait() [62af000..62afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x12187700> (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 <0x12187700> (a com.sap.engine.frame.core.load.res.JarThread)
    "Thread-14" daemon prio=5 tid=0x00f69290 nid=0xcac in Object.wait() [60ef000..60efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x120de208> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x120de208> (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=0x00f6bc80 nid=0xa64 in Object.wait() [606f000..606fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x120de230> (a java.lang.Object)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:134)
         - locked <0x120de230> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f6a0c0 nid=0xbc4 in Object.wait() [602f000..602fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x120de298> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x120de298> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x00f487a0 nid=0x364 in Object.wait() [5faf000..5fafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11f89be8> (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 <0x11f89be8> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f4f400 nid=0xec8 in Object.wait() [5f6f000..5f6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11f89c30> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x11f89c30> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "SeedGenerator Thread" daemon prio=5 tid=0x00f5b090 nid=0x10b4 in Object.wait() [5daf000..5dafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11f89c70> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Object.wait(Object.java:429)
         at sun.security.provider.SeedGenerator$ThreadedSeedGenerator.run(SeedGenerator.java:282)
         - locked <0x11f89c70> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_EnquReader" prio=5 tid=0x00f43e90 nid=0xc94 runnable [5d6f000..5d6fd90]
         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 <0x11f89cc0> (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=0x00f3a020 nid=0xaec waiting on condition [5d2f000..5d2fd90]
         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]_9" prio=5 tid=0x00f32940 nid=0x1634 in Object.wait() [5cef000..5cefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11f89d38> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x11f89d38> (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)
    "SAPEngine_System_Thread[impl:5]_8" prio=5 tid=0x00f31470 nid=0x1278 in Object.wait() [5caf000..5cafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (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=0x00f308a0 nid=0x97c in Object.wait() [5c6f000..5c6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11e10f10> (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 <0x11e10f10> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Session Reader for cluster node 11120200" prio=5 tid=0x00f2f690 nid=0x7dc runnable [5c2f000..5c2fd90]
         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 <0x11f8a5b0> (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]_5" prio=5 tid=0x00f2e2f0 nid=0xbe0 waiting on condition [5bef000..5befd90]
         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]_4" prio=5 tid=0x00f2d090 nid=0x9a8 in Object.wait() [5baf000..5bafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11f8a640> (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 <0x11f8a640> (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)
        

    HI Hassan,
    What is Server configuration can u check for the memory size ,if many instances are running please shutdown all instance and restart the server and start the instance where the J2ee is installed when the server is up including java engine ,then u can up the corresponding instances .i think there is a lack in memory it seems ..
    regards,
    S.Rajeshkumar

  • 1.4 bytecode on earlier VM

    Now I'm using JDK 1.4 all my progs give NoClassDefFoundException (or whatever is is when it can't find the class) on jview or IE's applet VM, they all worked OK on JDK 1.3. I've tried javac -target 1.1 to no avail
    Shish

    Sorry i'm at home...
    Hm it's just like the VM isnt able to find the main class.
    ie.: TestApplet.class compiled with 1.3 - no prob
    compiled with 1.4: Java Console:
    ClassNotFoundException : TestApplet.class
    and when i load the TestApplet.class into RetroGuard (Obfuscator)
    it shows that the class is corrupt. With the 1.3 bytecode there is no prob at
    all. Everything the same setting and same code! Only difference is
    the java version to compile that Class.
    Tried it at work on different computers with a lot of classes. Even Hello World Applets etc. When i enable the Sun Java Plugin everything works fine again.
    It's not a Classpath problem - not a jdk1.1-1.2 problem with MS VM - it's just like the 1.4 bytecode is not compatible with 1.1,1.2 or 1.3 bytecode.
    Best hint: try it... get Retroguard - it's free... and try to load a class which is
    compiled with 1.4 and the same class with 1.3! it says that the 1.4 class file is corrupt! So it's right that Explorer wont accept this classfile as a java classfile.
    Seems like Sun is trying to push their JRE with denying 1.4 bytecode to work in pure IE, even if it's jdk1.1 compatible!!!
    Sven

  • Java Error when attempting Chat: Invalid bytecode

    When I loaded up the chat on opera, it said invalide bytecode. So I tried loading it on firefox and IE, and it gave me the same message, "Error. Click for details" so I click and this is what I come up with:
    load: class com.chatspace.v400320.Chat not found.
    java.lang.ClassNotFoundException: com.chatspace.v400320.Chat
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at java.net.HttpURLConnection.getResponseCode(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
    Exception: java.lang.ClassNotFoundException: com.chatspace.v400320.Chat
    May someone tell me what's going on here? It worked fine all day, for months and now it decides to do this. I reinstalled the java 6.0 upgrade 11 as well and it did nothing to help. Running Windows XP Home edition

    Presumably you understand this site is for programmers writing code. Thus you are asking a question about code that you have written. If you are asking about an application that someone else wrote then you must ask them.
    When I loaded up the chat on opera, it said invalide bytecodeThe exception that you posted says nothing about invalid bytecodes. It says it can't find the class. That means it is a class path problem.

  • Java bytecode generation

    I am a student and am doing a project on converting java syntax which is in english into my own language which is urdu. the problem is that i am not able to read a single word from java class file inorder to get the specified bytecode. please provide me guidance.

    My interpretation of your question, is that you want to extract the constant strings out of a class file, translate them from English to Urdu, and rewrite the class file ?
    Basically, localisation, without the source code ?
    Here's a link to the detailled format of the class file format.
    http://java.sun.com/docs/books/vmspec/2nd-edition/html/ClassFile.doc.html#80961
    You probably only need to know how to read the constant pool.
    It stores all the constant strings in a class file.
    You won't need to touch the byte code itself.
    ( The byte code is the actual instructions stored in a code tag within the method attribute )
    So, in theory, you could read in the constant pool, translate the strings and write out the translated string to a new classfile.
    ( has to be same name, but in a different directory )
    It would require at least intermediate Java skills though.
    regards,
    Owen

  • Ipaq Socket problems

    I'm running into the following problem while running a PersonalJava application on a Compaq ipaq 3600. The Java application tries to open a Socket connection to a server, then close the connection for a number of iterations
    (currently 300). However, when it reaches the iteration in the range of approximately 193-199, it throws a java.net.ConnectionException when it tries to create a new Socket. I am unable to get any Java application
    to create a new Socket after this happens, until I perform a soft reset of the ipaq. This happens every time I run the application. The server I'm currently connecting to is an apache webserver, but I have tried to connect to various servers (different host/port combinations) and the problem always occurs.
    It is occurring on both the Jeode and Sun WinCE PersonalJava beta 1.1 implementation.
    The following source code produces the problem:
    import java.io.*;
    import java.net.*;
    public class SocketTest {
    public static void main(String args[]) {
    Socket s1 = null;
    PrintWriter pw = null;
    try {
    FileOutputStream fos = new FileOutputStream("\\socketoutput.txt");
    pw = new PrintWriter(fos, true);
    } catch (IOException ioe) {
    System.exit(0);
    try {
    for (int i = 1; i < 300; i++) {
    s1 = new Socket("192.168.0.57", 80);
    pw.println("Opened socket " + i);
    pw.println("socket is " + s1.toString());
    s1.close();
    pw.println("closed socket " + i);
    try {
    Thread.sleep(600);
    } catch (Exception e) {
    } catch (Exception e) {
    e.printStackTrace();
    e.printStackTrace(pw);
    if (s1 != null) {
    pw.println("Socket.toString(): " + s1.toString());
    pw.println("Exception message: " + e.getMessage());
    pw.close();
    System.out.println("At end");
    (Apologies for the indentation not appearing in the above code)
    The exception that is thrown when the Socket cannot be created is:
    java.net.ConnectException
         at java.net.PlainSocketImpl.connect (Native Method)
         at java.net.PlainSocketImpl.connect (bytecode 33)
         at java.net.PlainSocketImpl.connect (bytecode 9)
         at java.net.Socket.<init> (bytecode 96)
         at java.net.Socket.<init> (bytecode 9)
         at SocketTest.main (bytecode 15)
    Socket.toString(): Socket[addr=192.168.0.57/192.168.0.57,port=80,localport=1607]
    Exception message: null
    Has anyone else see anything like this? If so, is there a workaround? This is only a test application, the real-life application will involve a number of socket open/close operations during its lifetime, but this problem keeps occurring.
    Any help would be appreciated.
    thanks,
    Derek

    For anyone interested. The solution to this problem is located here.
    http://groups.yahoo.com/group/j2me-cdc/message/57

  • Problems installing Netweaver Developer Workplace 2004

    Dear Netweaver experts,
    I have severe problems installing Netweaver Developer Workplace 2004 on windows XP.
    I used sapinst for installing the Java sytem (Menue Java System->Oracle->Custom Installation).
    After running through 34 of the 35 phases during which the sapinst tries to start the freshly installed J2EE engine I got the error :
    CJSlibModule::writeError_impl() CJS-20057 Starting J2EE Engine J00 of SAP system J2E failed: after 84 s the state of the engine changed from "Starting" to "Stopped".
    and changed my memory setting using the configtool.
    Afterwards I tried to start the server in my MMC and it seemed to be running.
    INFO
    Execution of the command "D:\usr\sap\J2E\JC00\exe/startsap.exe 'name=J2E' 'nr=00' 'SAPDIAHOST=K-0017553'" finished with return code 0. Output: STARTSAP continues...
    But when I had a closer look at the Process table at the MMC I saw that the server0 wasn't running
    (Server 0 stopped Exit Code -2).
    Now I don't know how to proceed.
    Does someone of you know how I could get my J2EE server running ?
    Below you find  my present settings :
    trc file: "D:\usr\sap\J2E\JC00\work\dev_server0", trc level: 1, release: "640"
    node name   : ID3806050
    pid         : 5496
    system name : J2E
    system nr.  : 00
    started at  : Tue Dec 02 11:16:19 2008
    arguments   :
        arg[00] : D:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
        arg[01] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC00_K-0017553
        arg[02] : -DSAPINFO=J2E_00_server
        arg[03] : pf=D:\usr\sap\J2E\SYS\profile\J2E_JC00_K-0017553
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties]
    -> ms host    : K-0017553
    -> ms port    : 3601
    -> OS libs    : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : K-0017553
    -> ms port    : 3601
    -> os libs    : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID3806000  : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID3806050  : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID3806000            : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID3806050            : D:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    [Thr 5312] Tue Dec 02 11:16:19 2008
    [Thr 5312] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 5312] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4100] JLaunchRequestFunc: Thread 4100 started as listener thread for np messages.
    [Thr 3328] WaitSyncSemThread: Thread 3328 started as semaphore monitor thread.
    [Thr 5312] Tue Dec 02 11:16:20 2008
    [Thr 5312] INFO: Invalid property value [JLaunchParameters/]
    [Thr 5312] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 5312] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_18
    JStartupIReadSection: read node properties [ID3806050]
    -> node name       : server0
    -> node type       : server
    -> java path       : C:\j2sdk1.4.2_18
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -Dsun.io.useCanonCaches=false -XX:NewSize=170m -XX:MaxNewSize=170m -XX:MaxPermSize=192m -Djava.awt.headless=true -XX:PermSize=192m -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:DisableExplicitGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC -Drdbms.driverLocation=D:/Oracle/Ofs33/jdbc/lib/classes12.jar -Dsys.global.dir=D:/usr/sap/J2E/SYS/global/
    -> java vm version : 1.4.2_18-b06
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 1024M
    -> init heap size  : 256M
    -> root path       : D:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : D:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.engine.boot.Start
    -> parameters      :
    -> debuggable      : yes
    -> debug mode      : yes
    -> debug port      : 50021
    -> shutdown timeout: 120000
    [Thr 5312] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 3648] JLaunchIStartFunc: Thread 3648 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: -Djava.security.policy=./java.policy
    -> arg[  3]: -Djava.security.egd=file:/dev/urandom
    -> arg[  4]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  5]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  6]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  7]: -Djco.jarm=1
    -> arg[  8]: -Dsun.io.useCanonCaches=false
    -> arg[  9]: -XX:NewSize=170m
    -> arg[ 10]: -XX:MaxNewSize=170m
    -> arg[ 11]: -XX:MaxPermSize=192m
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -XX:PermSize=192m
    -> arg[ 14]: -XX:SurvivorRatio=2
    -> arg[ 15]: -XX:TargetSurvivorRatio=90
    -> arg[ 16]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 17]: -verbose:gc
    -> arg[ 18]: -XX:+DisableExplicitGC
    -> arg[ 19]: -XX:+PrintGCDetails
    -> arg[ 20]: -XX:+PrintGCTimeStamps
    -> arg[ 21]: -XX:+UseParNewGC
    -> arg[ 22]: -Drdbms.driverLocation=D:/Oracle/Ofs33/jdbc/lib/classes12.jar
    -> arg[ 23]: -Dsys.global.dir=D:/usr/sap/J2E/SYS/global/
    -> arg[ 24]: -Dsys.global.dir=D:\usr\sap\J2E\SYS\global
    -> arg[ 25]: -Dapplication.home=D:\usr\sap\J2E\JC00\j2ee\os_libs
    -> arg[ 26]: -Djava.class.path=D:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 27]: -Djava.library.path=C:\j2sdk1.4.2_18\jre\bin\server;C:\j2sdk1.4.2_18\jre\bin;C:\j2sdk1.4.2_18\bin;D:\usr\sap\J2E\JC00\j2ee\os_libs;D:\Oracle\Ofs33\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\usr\sap\J2E\SCS01\exe;D:\usr\sap\J2E\JC00\exe;D:\usr\sap\J2E\SYS\exe\run
    -> arg[ 28]: -Xdebug
    -> arg[ 29]: -Xnoagent
    -> arg[ 30]: -Djava.compiler=NONE
    -> arg[ 31]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50021
    -> arg[ 32]: -Dmemory.manager=1024M
    -> arg[ 33]: -Xmx1024M
    -> arg[ 34]: -Xms256M
    -> arg[ 35]: -DLoadBalanceRestricted=yes
    -> arg[ 36]: -Djstartup.mode=JCONTROL
    -> arg[ 37]: -Djstartup.ownProcessId=5496
    -> arg[ 38]: -Djstartup.ownHardwareId=V0317565360
    -> arg[ 39]: -Djstartup.whoami=server
    -> arg[ 40]: -Djstartup.debuggable=yes
    -> arg[ 41]: -DSAPINFO=J2E_00_server
    -> arg[ 42]: -DSAPSTARTUP=1
    -> arg[ 43]: -DSAPSYSTEM=00
    -> arg[ 44]: -DSAPSYSTEMNAME=J2E
    -> arg[ 45]: -DSAPMYNAME=K-0017553_J2E_00
    -> arg[ 46]: -DSAPDBHOST=
    -> arg[ 47]: -Dj2ee.dbhost=K-0017553
    [Thr 3648] JLaunchIAbortJava: abort hook is called
    [Thr 3648] JLaunchCloseProgram: good bye (exitcode=-2)

    Dear Netweaver experts,
    I found the solution.
    I took for my system (Win XP, 2,5 GB RAM)  the settings posted below :
    Maximum heap size : 512 MB
    -Djava.security.policy=./java.policy
    -Djava.security.egd=file:/dev/urandom
    -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -Djco.jarm=1
    -Dsun.io.useCanonCaches=false
    -XX:NewSize=170m
    -XX:MaxNewSize=170m
    -XX:MaxPermSize=192m
    -Djava.awt.headless=true
    -XX:PermSize=192m
    -XX:SurvivorRatio=2
    -XX:TargetSurvivorRatio=90
    -XX:SoftRefLRUPolicyMSPerMB=1
    -Xms512m
    -verbose:gc
    -XX:+DisableExplicitGC
    Best regards,
    Daniel
    -XX:+PrintGCDetails
    -XX:+PrintGCTimeStamps
    -XX:+UseParNewGC

  • JAVA ME - Problems compiling and running (using Eclipse)

    Hello,
    I am new to Java ME and I am trying to run a copied HelloMIDlet application. I am getting following error when I am trying to run the application:
    Running with storage root C:\Users\Niklas\j2mewtk\2.5.2\appdb\MediaControlSkin
    Running with locale: Swedish_Sweden.1252
    Running in the identified_third_party security domain
    java.lang.NullPointerException
         at javax.microedition.lcdui.Item.addCommandImpl(+11)
         at javax.microedition.lcdui.StringItem.addCommandImpl(+11)
         at javax.microedition.lcdui.Item.addCommand(+11)
         at HelloMIDlet.<init>(+99)
         at java.lang.Class.runCustomCode(+0)
         at com.sun.midp.midlet.MIDletState.createMIDlet(+34)
         at com.sun.midp.midlet.Scheduler.schedule(+52)
         at com.sun.midp.main.Main.runLocalClass(+28)
         at com.sun.midp.main.Main.main(+80)
    Execution completed.
    3415817 bytecodes executed
    17 thread switches
    1667 classes in the system (including system classes)
    17760 dynamic objects allocated (533540 bytes)
    2 garbage collections (459436 bytes collected)And the applicaiton:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    public class HelloMIDlet extends MIDlet
           implements CommandListener {
      // The exit command
      private Command exitCommand;
      // The display for this MIDlet
      private Display display;   
      // create a ticker
      private Ticker hi = new Ticker("J2ME is cool");
      public HelloMIDlet() {
        display = Display.getDisplay(this);
        exitCommand = new Command("Exit", Command.SCREEN, 2);
      public void startApp() {
        TextBox t = new TextBox("Hello MIDlet",
                    "Wireless Internet", 256, 0);
        t.addCommand(exitCommand);
        t.setCommandListener(this);
        t.setTicker(hi); // set the ticker
        display.setCurrent(t);
      public void pauseApp() { }
      public void destroyApp(boolean unconditional) { }
      public void commandAction(Command c, Displayable s) {
        if (c == exitCommand) {
          destroyApp(false);
          notifyDestroyed();
    }I did try to remove as much code as possible still being able to compile it. Exactly the same type of error was presented still...
    I have another MIDlet in the same projects that works fine.
    What is the problem?
    Thank you in advance!
    Best Regards,
    Niklas

    java.lang.NullPointerException
         at HelloMIDlet.<init>(+99)
    ...Try to modify your code about as follows:
      private Ticker hi;  // initialize ticker in startApp
    /* don't override the MIDlet constructor
      public HelloMIDlet() {
      public void startApp() {
        // initialize all MIDP UI stuff in startApp
        hi = new Ticker("J2ME is cool");
        display = Display.getDisplay(this);
        exitCommand = new Command("Exit", Command.SCREEN, 2);
        TextBox t = new TextBox("Hello MIDlet",
                    "Wireless Internet", 256, 0);
        t.addCommand(exitCommand);
        t.setCommandListener(this);
        t.setTicker(hi); // set the ticker
        display.setCurrent(t);
    //...The problem might be caused by initializing MIDP UI stuff prior to entering startApp method. I also think that overriding MIDlet constructor is not quite a good idea. Check [MIDP tutorials (Google search shows plenty)|http://www.google.com/search?q=MIDP+tutorials] if you're interested to know more details on that.

  • Problems with j2re and j2sdk's j2re

    OK I know that subject doesn't make much sense, but this is rather hard to explain.
    Has anyone else had any issues with the the Java2 1.4 SDK's jre (The software dev kit along with the jre) and just the 1.4 jre installation files? Basically it's this:
    j2re-1_4_0-win.exe - JRE ONLY
    j2sdk-1_4_0-win.exe - SDK + JRE
    Even though both of these files install the same version of the jre, I'm thinking they are different in some way (either a bug or on purpose I don't know).
    I've been developing some ESRI MapOjects Java applications and ran into this issue when making an applet.
    Installing the jre with j2sdk-1_4_0-win.exe will make the applet work, but just installing the jre itself (j2re-1_4_0-win.exe - the one your web browser will make you d/l if you don't have jre 1.4) will make the applet unworkable.
    The particular problem is with file access. I download the files to the local machine then use them later on in the program. The sdk-jre doesn't have a problem with this, but the jre only version does for some reason. Even after downloading the files and checking if they exist, are readable, and are writable (all three returned true) it still treats the files as nonexistant.
    Obviously this is very puzzling and was wondering if anyone else has had something like this happen to them, and if not maybe Sun should look into this since this has really made my applet pointless (what's the point of using an applet if you have to d/l a 30+ meg file in order to run it vs the 9 meg file that won't run it :) ).
    Not that my applet is Sun's major concern, :) but if this becomes a reocurring problem with others then it should be investigated.
    To answer the first question if any will arise in this thread, yes my applet is digitally signed and it's not just my computer. I have this happen on four other computers until I saw the pattern and installed the sdk on them. Then the applet started to work.

    There is the possibility of differences between the various runtimes, but I can't see them causing the type of problem you note.
    A separately d/l'd JRE can be either an "English-only" version or an "International" version. (The 2 installed as part of the SDK are the "International" version.)
    Both JRE's that are installed as part of the SDK have 2 separate bytecode-to-native compiler binaries - Client and Server versions, selectable via java.exe options. A separately d/l'd JRE has only the Client binary (both English-only and International versions).
    Using the current Plugins, it's not necessary to use the HTML converter (quoted from Sun):
    "Beginning with J2SE 1.3.1_01a, Java Plug-in supports <applet> tags for launching applets and for initiating autodownload of the JRE/Java Plug-in on Microsoft Windows platforms. For more information, see Java Plug-in Developer Documentation"
    I'm of the opinion that some environment difference - classpath, Plugin settings, etc. is causing the difference between runtimes.

  • Weird problem using bitwise opertor

    Hi all,
    I have problem with >>> (bitwise logical right shift) operator.
    As an example, the result of this operator on 0x8000 value is not as I expect. As I read about this operator, the result of one bit logical right shift should be 0x4000 but the actual result is 0xC000, and as I see in my test applets there is no difference between >> and >>> operators. I tested this operator on both ST and Gemalto cards and the results were the same.
    short n=(short) 0x8000;
    short x= (short) n >>>1; //Here I expect 0x4000 but the actual result is 0xC000
    short y= (short) n>>1; //Here as I expect the result is 0xC000Would some body please explain such weird action of this operator?
    By the way, Is there any explicit operator for POWER operation in java card or I should use this bitwise operators instead?
    -Thanks a lot
    Edited by: bluefairy on Sep 16, 2010 12:50 AM

    It is quite simple if you know where to look. Open up your Java Card Virtual Machine specification, if you can find it.
    The >>> operator translates to the "sushr" bytecode.
    Let's see what that means...
    Forms
    sushr = 81 (0x51)
    Stack
    &hellip;, value1, value2 &minus;>
    &hellip;, result
    Description
    Both value1 and value2 must be of type short. The values are popped from the operand stack. A short result is calculated by sign-extending value1 to 32 bits (footnote 1) and shifting the result right by s bit positions, with zero extension, where s is the value of the low five bits of value2. The resulting value is then truncated to a 16-bit result. The result is pushed onto the operand stack.
    Footnote 1
    Sign extension to 32 bits ensures that the result computed by this instruction will be exactly equal to that computed by the Java iushr instruction, regardless of the input values. In a Java Card virtual machine the
    expression "0xffff >>> 0x01" yields 0xffff, where ">>>" is performed by the sushr instruction. The same result is rendered by a Java virtual machine.
    So... What does this mean ? This means that your variable is sign-extended to a 32-bit value (meaning that the sign bit is propagated), THEN the right shift is performed.
    See below my comments in the code.
    short n = (short) 0x8000;
    short x = (short) n >>> 1;
    // 0x8000 is extended to 0xFFFF8000
    // Right-shift by 1 bit --> 0xFFFFC000
    // Cast to short --> 0xC000Hope this helps.
    Cheers

  • Compiling and Bytecode

    If this post sounds messed up, that's because it likely is. You're gonna have to work with me on this one...
    If you compile a class that has dependencies on at least one more class, that other class must be present (either as source code or bytecode) for the compilation to occur. I don't know how to word my question, but what level of connection is there between bytecode in related classes after compilation?
    If class A has a dependency on class B (either in a is-a or has-a relationship) and you compile class A in the presence of class B, what happens if you delete the compiled bytecode of class B and replace it with an updated version after you initially compile class A? Still with me here? I'm asking this not because I want to do such a stupid thing, but because I'd like to gain some insight into what's going on in those darn .class files.
    Does the compiled bytecode of class A have some relationship with that of class B that requires it to not be changed? If so, is this a security problem, in that I could ship you a class that I compiled without the presence of your classes (if I happen to know their API somehow) and it could mess around with it? Or is this a good part of Java in that a class can be developed in the absence of others for some dynamic functionality (you can develop in isolation and 'plug it in' afterwards)...
    Another reason that I'm asking this: compilers enforce compile-time constraints, but a compiler develops bytecode that is used at runtime, so couldn't you "simply" modify the bytecode after compile-time and change it around to get by those compile-time restrictions? Like access control, using deprecated classes, etc?

    but what level of connection is there between bytecode in related classes after compilation?Depends, but usually not too much. Methods are important, in terms of access, return value, and paramters. Fields with access and type. Static final fields are inlined and can cause problems.
    If class A has a dependency on class B (either in a is-a or has-a relationship) and you
    compile class A in the presence of class B, what happens if you delete the compiled
    bytecode of class B and replace it with an updated version after you initially compile class A?As long as you don't change method/field signatures or base class, things should work.
    If so, is this a security problem, in that I could ship you a class that I compiled without the
    presence of your classes (if I happen to know their API somehow) and it could mess
    around with it?Potentially. You can use various security techniques to try to stop this though - signed code, etc.
    so couldn't you "simply" modify the bytecode after compile-time and change it around to get by those compile-time restrictions? Sure, though some checks are enforced by the VM as well (AbstractMethodError for example). Poorly created byte code will also cause the verifier to barf and unverified bogus byte code might cause the JVM to go down.
    Like access controlI suppose.
    using deprecated classes, etc?One can always use deprecated classes, no need for byte code manipulation.

Maybe you are looking for

  • Wm strategy L--Next Empty Bin

    Hi Gurus,     I have some basic question   , 1.L-Next Empty Bin:- As we already defines the search strategy for the storage type & structure of the bin with its way of deciding the bin. Why it is require to define it as a separate strategy(Assiged to

  • Af:table fetching next range of data

    Hi! I have a table component on jsf page, property RangeSize set to 25(default). Now I want to invoke a method from my managed bean each time when is fetching next range of data of ViewObject(next 25 rows). But how can I invoke this method? Does anyb

  • Sag shows wrong in Muse

    Hi. When I save my sag file in illustrator and place them in a box in Muse, because I want to have different svg in the states. But the preview of it shows very weird, how do I get this to view normal when I work in Muse? When it's previewed in the b

  • Improvements to gradients.

    I suggested this before but since its gone in the new forum here it is again: Gradient improvements. Adjust the hue/saturn/Brightness contrast of a gradient. Like in Sumopaint. I use gradients daily and this would be a huge timesaver. When working wi

  • Allocation of Profit Center actual postings

    Hi all, Have a question regarding on how to allocate the actual postings done to a profit center. Are there any other methods aside from the assessment (3KE5) and distribution (4KE5). Also, i have found a sap note that allows the creation of cycles (