Peer Instance Id

When I use Send Message Actiivity in one process and Message Wait Activity in another process and I keep the Type of Event as External,
while mapping arguments in the Send Message Activity, I get an argument as peerInstanceId.
Does anyone know, what is this peer Instance Id and how do I use it to send messages.
I can send messages but my other process just keeps waiting for these messages and does not receive any message.. Any idea?

Ok, if someone has the same issue then here is the bug id for this: CSCud74480
Marek

Similar Messages

  • RMI ClassCastException

    Hello, world!
    My problem is the following: I'm developping a peer-to-peer application based on RMI. This application includes applets -called peerlets- that can be exposed to and used by other peers. Hence I have two remote interfaces:
    public interface Peerlet extends Remote {
        // stuff that throws RemoteException
    public interface Peer extends Remote {
        public Peerlet getPeerlet(/*some Peerlet ID here*/) throws RemoteException;
    }As you can see Peer is the broker that passes references on local peerlets to remote peers. There are many possible peerlets, such as:
    public interface APeerlet extends Peerlet {
        // stuff that throws RemoteException
    }Creating a Peer instance, retrieve it from another remote Peer instance via RMI is fine. My problem occurs when I try to get references on remote peerlets. Concretely the situation is the following:
    - peerA and peerB are two running Peer instances, they have a reference on each other; peerA hosts a APeerlet.
    - if peerB tries the following:
    Peerlet p = (APeerlet) peerA.getPeerlet(/*appropriate ID to get the desired APeerlet*/);
    //...everything goes fine, peerB can use p normaly. But this is not what I want, since this piece of code needs to have APeerlet defined. If I try to get simply a Peerlet - that would be used latter by another piece of code who knows what to do with a APeerlet - ie:
    Peerlet p = (Peerlet) peerA.getPeerlet(/*...*/);
    //...I get a
    java.lang.ClassCastException: $Proxy3 cannot be cast to ....PeerletI guess it's a class loading issue, but I can't figure out why the cast to Peerlet fails whereas a cast to APeerlet does not. I have found interesting behaviour with this two variations in peerB's code:
    import ....APeerlet;
    Class<? extends Peerlet> clazz = APeerlet.class;
    Peerlet p = clazz.cast(peerA.getPeerlet(/*...*/););
    // no import ....APeerlet;
    Class<? extends Peerlet> clazz = /*something that returns me APeerlet.class*/;
    Peerlet p = clazz.cast(peerA.getPeerlet(/*...*/););The first version is still not what I want since it needs a definition of APeerlet, but it works. The second one throws ClassCastException... I have hidden many details, such as the http server I use for dynamic class loading; it does not receive the same queries when the ClassCastException is thrown. Could it be the source of my trouble?
    S
    Edited by: sylf on Aug 14, 2010 3:09 PM

    I see your point. Only Peer should be in the codebase, since it is the only class bound to the RMIRegistry, Peerlet and APeerlet should NOT be in the codebase but only in the classpath of both peers.
    However, if Peerlet is not in the codebase, I get a ClassNotFoundException : Peerlet at startup, since the Peer interface uses Peerlet as a return type of Peer.getPeerlet(...). So I had no choice but to keep Peerlet in the codebase, and now peerB gets a ClassNotFoundException : APeerlet when trying to get a APeerlet from peerA...
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
            java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.lang.ClassNotFoundException: ....APeerlet
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:336)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at java.lang.Thread.run(Thread.java:619)
            at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:273)
            at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:251)
            at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:160)
            at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:194)
            at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:148)
            at $Proxy0.getPeerlet(Unknown Source)
            at ...Peer.getPeerlet(Peer.java:112)
            at //...
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.lang.ClassNotFoundException: ...APeerlet
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:296)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.ClassNotFoundException: ...APeerlet
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Class.java:247)
            at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:434)
            at sun.rmi.server.LoaderHandler.loadClass(LoaderHandler.java:165)
            at java.rmi.server.RMIClassLoader$2.loadClass(RMIClassLoader.java:620)
            at java.rmi.server.RMIClassLoader.loadClass(RMIClassLoader.java:247)
            at sun.rmi.server.MarshalInputStream.resolveClass(MarshalInputStream.java:197)
            at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1575)
            at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
            at java.io.ObjectInputStream.readClass(ObjectInputStream.java:1462)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1312)
            at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
            at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
            at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
            at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:306)
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:290)
            ... 9 moreIt looks like it's the RMIServer who can't find APeerlet... but why?
    I get the same Exception after having changed the return type of Peer.getPeerlet() to Remote so that Peerlet has not to be in the codebase anymore.
    S

  • Help: Calling C++ method in Java source code?

    I found a method very useful, but it is written in C++, really hate to translate it into Java. My questions are:
    1. Is it possible to call it in my java source code?
    2. If so, how to call the C++ method in my Java program?

    To answer your first question, yes it is possible to call your C++ method from Java. There are several answers to your second question, however. You can use the raw procedural JNI and code your own layer that maps your Java proxy object instances to C++ peer instances. Another option is to generate the code for that mapping automatically. How? Download JNI++ (http://jnipp.sf.net or http://www.sf.net/projects/jnipp). JNI++ is a free, open-source toolkit that makes easy work of bi-directional Java <---> C++ integration -- it will even generate your makefile. Comes complete with a 100-page printable PDF User Guide and plenty of examples to get you started.
    Good luck with your project.
    I found a method very useful, but it is written in
    C++, really hate to translate it into Java. My
    questions are:
    1. Is it possible to call it in my java source code?
    2. If so, how to call the C++ method in my Java
    program?

  • How do I create admin console users with full access to configuration and the directory in every instance?

    I want to be able to create directory user ID for the iPlanet administrators. They should be able to access the admin console and all the instances created. They should be able to configure each instance and directory. I was able tocreate Admin Server Administrators but they were only able to modify the directory(tab) and not the configurations(tab). Any help would be greatly appreciated!
    Thanks.
    Keith

    Hi Keith,
    In o=netscaperoot, edit the static group called cn=Configuration Administrators, ou=Groups, ou=TopologyManagement, o=NetscapeRoot - this group contains the admins peer to your config admin. Since the console is quirky and doesn't let you add in users not in netscaperoot, just click advanced and put in the full dn of whoever you want in by hand, e.g., uid=scarter, ou=people, dc=mydomain,dc=com as a static member. then rebind to the console with the full dn and passwd, and away you go :)
    james

  • Error in starting J2ee instance

    hi
    I am facing problem in starting the Java Instance. the following is the dispatcher log.
    reqeust you to please hlep
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        BW7
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        2440
    Wed Nov 28 16:10:55 2007
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2440) [dpxxdisp.c   1237]
           shared lib "dw_xml.dll" version 75 successfully loaded
           shared lib "dw_xtc.dll" version 75 successfully loaded
           shared lib "dw_stl.dll" version 75 successfully loaded
           shared lib "dw_gui.dll" version 75 successfully loaded
           shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >blrkecesbibw_BW7_01                     <
    DpShMCreate: sizeof(wp_adm)       23936  (1408)
    DpShMCreate: sizeof(tm_adm)       3994272       (19872)
    DpShMCreate: sizeof(wp_ca_adm)           24000  (80)
    DpShMCreate: sizeof(appc_ca_adm)  8000   (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)            528064 (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)            0      (72)
    DpShMCreate: sizeof(vmc_adm)             0      (1440)
    DpShMCreate: sizeof(wall_adm)            (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: SHM_DP_ADM_KEY       (addr: 07990040, size: 4659000)
    DpShMCreate: allocated sys_adm at 07990040
    DpShMCreate: allocated wp_adm at 07991E40
    DpShMCreate: allocated tm_adm_list at 07997BC0
    DpShMCreate: allocated tm_adm at 07997BF0
    DpShMCreate: allocated wp_ca_adm at 07D66E90
    DpShMCreate: allocated appc_ca_adm at 07D6CC50
    DpShMCreate: allocated comm_adm at 07D6EB90
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 07DEFA50
    DpShMCreate: allocated gw_adm at 07DEFA90
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 07DEFAC0
    DpShMCreate: allocated wall_adm at 07DEFAC8
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 2047 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3648
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1404
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( blrkecesbibw) [dpxxdisp.c   11586]
    DpStartStopMsg: send start message (myname is >blrkecesbibw_BW7_01                     <)
    DpStartStopMsg: start msg sent
    Wed Nov 28 16:10:56 2007
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Wed Nov 28 16:11:06 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1296
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1407) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3648)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:11:11 2007
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Wed Nov 28 16:11:36 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3052
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1455
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:11:38 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1252
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1456) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3052)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:11:56 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6196
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1462
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:11:58 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1248
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1463) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6196)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:12:16 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6312
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1468
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:12:18 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1240
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1469) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6312)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:12:36 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6432
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1474
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:12:38 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1236
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1475) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6432)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:12:56 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6556
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1480
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:12:58 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1232
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1481) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6556)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:13:16 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6804
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1501
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:13:18 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1224
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1502) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6804)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:13:36 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7056
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1527
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:13:38 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1220
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1528) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7056)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:13:56 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7176
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1535
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:13:58 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1216
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1536) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7176)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:14:16 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7320
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1544
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Wed Nov 28 16:14:18 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1212
           (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1545) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7320)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Wed Nov 28 16:14:36 2007
    DpEnvCheckJ2ee: switch off j2ee start flag

    Hai,
           i think this would be a memory issue. please check the Java VM Settings.
    go through the following thread, this may solve your problem..
    Re: DpHalt, DPStop
    regards,
    Gopinathan.

  • Sap instance is not starting

    Hi this is sathyan here i have SAP 4.6c on win2k and recently when i started the server the nessage server is working ok but the dispatcher starts and then stops immediately. and all the work process end not able to find out the problem please help below are the following log files ...please help me.....
    1. dev_disp
    trc file: "dev_disp", trc level: 1, release: "46C"
    Mon May 29 15:33:05 2006
    relno 4640
    patchlevel 0
    patchno 748
    intno 0
    pid 1628
    ***LOG Q00=> DpSapEnvInit, DPStart (00 1628) [dpxxdisp.c 878]
    MtxInit: -2 0 0
    MBUF state OFF
    MBUF opmode USE
    Mon May 29 15:33:07 2006
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation std
    <ES> Memory Reset enabled as NT default
    <EsNT> EsIUnamFileMapInit: Initialize the memory 360 MB
    <ES> 359 blocks reserved for free list.
    ES initialized.
    Mon May 29 15:33:08 2006
    ***LOG Q0K=> DpMsAttach, mscon ( sapsrv) [dpxxdisp.c 7536]
    MBUF set hwid_state to HWID_PENDING
    CCMS: Initalizing shared memory of size 10000000 for monitoring segment.
    Mon May 29 15:33:09 2006
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 4640, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    MBUF set hwid_state to SAP_O_K (P0529498296 )
    DpMsgAdmin: Set patchno for this platform to 748
    Release check o.K.
    Mon May 29 15:33:48 2006
    ERROR => W0 (pid 1824) died [dpxxdisp.c 9723]
    ERROR => W1 (pid 1832) died [dpxxdisp.c 9723]
    ERROR => W2 (pid 1840) died [dpxxdisp.c 9723]
    ERROR => W3 (pid 1848) died [dpxxdisp.c 9723]
    ERROR => W4 (pid 1856) died [dpxxdisp.c 9723]
    ERROR => W5 (pid 1864) died [dpxxdisp.c 9723]
    ERROR => W7 (pid 1880) died [dpxxdisp.c 9723]
    ERROR => W8 (pid 1888) died [dpxxdisp.c 9723]
    ERROR => W10 (pid 1904) died [dpxxdisp.c 9723]
    ERROR => W11 (pid 1908) died [dpxxdisp.c 9723]
    my types changed after wp death/restart 0x3f --> 0x3b
    MBUF MOD: state MBUF_PREPARED -> return
    Mon May 29 15:34:08 2006
    ERROR => W6 (pid 1872) died [dpxxdisp.c 9723]
    ERROR => W9 (pid 1896) died [dpxxdisp.c 9723]
    ERROR => W12 (pid 1916) died [dpxxdisp.c 9723]
    ERROR => W13 (pid 1924) died [dpxxdisp.c 9723]
    ERROR => W14 (pid 1944) died [dpxxdisp.c 9723]
    my types changed after wp death/restart 0x3b --> 0x0
    DP_FATAL_ERROR => DpEnvCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    Mon May 29 15:34:09 2006
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c 7741]
    MBUF state OFF
    MBUF component DOWN
    ***LOG Q05=> DpHalt, DPStop ( 1628) [dpxxdisp.c 6458]
    2. dev_ms
    trc file: "dev_ms", trc level: 1, release: "46C"
    [Thr 1552] Mon May 29 15:33:02 2006
    [Thr 1552] MsSSetTrcLog: trc logging not active
    [Thr 1552] Mon May 29 15:33:03 2006
    [Thr 1552] relno 4640
    [Thr 1552] patchlevel 0
    [Thr 1552] patchno 690
    [Thr 1552] intno 0
    [Thr 1552] pid 232
    ***LOG Q01=> MsSInit, MSStart (Msg Server 1 232) [msxxserv.c 1307]
    [Thr 1552] *** I listen to port sapmsTBC (3600) ***
    [Thr 1552] CUSTOMER KEY: >P0529498296<
    [Thr 1552] Mon May 29 15:34:09 2006
    [Thr 1552] ***LOG Q0I=> NiPRead: recv [Thr 1552] (10054: WSAECONNRESET: Connection reset by peer) [Thr 1552] [ninti.c 1123]
    [Thr 1552] *** ERROR => MsSRead: NiBufReceive (rc=NIECONN_BROKEN) [msxxserv.c 7393]
    [Thr 1552] *** ERROR => MsSClientHandle: MsSRead C1 (sapsrv_TBC_00), MSEINTERN [msxxserv.c 3113]
    [Thr 1668] Mon May 29 15:34:55 2006
    [Thr 1668] MsSExit: received SIGINT (2)
    ***LOG Q02=> MsSHalt, MSStop (Msg Server 232) [msxxserv.c 4139]
    3.dev_rfc
    ERROR file opened at 20070107 233251 Pacific Standar, REL 46C,0,748, VER 3 MT-SL
    T:2060 ======> CPIC-CALL: 'CMRCV'
    LOCATION CPIC (TCP/IP) on local host
    ERROR connection to partner broken
    TIME Sun Jan 07 23:32:51 2007
    RELEASE 46C
    COMPONENT NI (network interface)
    VERSION 34
    RC -6
    MODULE ninti.c
    LINE 1123
    DETAIL NiPRead
    SYSTEM CALL recv
    ERRNO 10054
    ERRNO TEXT WSAECONNRESET: Connection reset by peer
    COUNTER 3
    T:2060 <* RfcDispatch [1] : returns 1:RFC_FAILURE
    ERROR file opened at 20060419 161537 Pacific Dayligh, REL 46C,0,748, VER 3 MT-SL
    T:1012 ======> CPIC-CALL: 'CMRCV'
    LOCATION CPIC (TCP/IP) on local host
    ERROR connection to partner broken
    TIME Wed Apr 19 16:15:37 2006
    RELEASE 46C
    COMPONENT NI (network interface)
    VERSION 34
    RC -6
    MODULE ninti.c
    LINE 1699
    DETAIL NiPWrite
    SYSTEM CALL WSASend
    ERRNO 10054
    ERRNO TEXT WSAECONNRESET: Connection reset by peer
    COUNTER 3
    T:1012 <* RfcDispatch [1] : returns 1:RFC_FAILURE
    4.dev_w0
    trc file: "dev_w0", trc level: 1, release: "46C"
    ACTIVE TRACE LEVEL 1
    ACTIVE TRACE COMPONENTS all, M
    B
    B Mon May 29 15:33:09 2006
    B create_con (con_name=R/3)
    B Loading DB library 'E:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B Library 'E:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B Version of library 'E:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46C.00", patchlevel (0.575)
    B New connection 0 created
    M relno 4640
    M patchlevel 0
    M patchno 748
    M intno 0
    M pid 1824
    M
    M ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1824) [dpxxdisp.c 912]
    I MtxInit: -2 0 0
    X EmInit: MmSetImplementation( 2 ).
    X <ES> client 0 initializing ....
    X Using implementation std
    M <ES> Memory Reset enabled
    X ES initialized.
    M ThSysUsrCheck: clear T0
    M calling db_connect ...
    B find_con found the following connection for reuse:
    B 0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C Got ORACLE_HOME=E:\oracle\ora81 from environment
    C Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C Logon as OPS$-user to get SAPR3's password
    C Connecting as /@TBC on connection 0 ...
    C
    C Mon May 29 15:33:26 2006
    C *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c 2423]
    C *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c 6721]
    C Try to connect with default password
    C Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c 2423]
    C *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c 6721]
    C Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C Logon as OPS$-user to get SAPR3's password
    C Connecting as /@TBC on connection 0 ...
    C *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c 2423]
    C *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c 6721]
    C Try to connect with default password
    C Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c 2423]
    C *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c 6721]
    B ***LOG BY2=> sql error 1033 performing CON [dbsh 0695 ]
    B ***LOG BY0=> [dbsh 0695 ]
    B ***LOG BY2=> sql error 1033 performing CON [dblink 0627 ]
    B ***LOG BY0=> [dblink 0627 ]
    M ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c 1093]
    M *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c 7850]
    M
    M Info for wp 0
    M
    M stat = 4
    M reqtype = 1
    M act_reqtype = -1
    M tid = -1
    M mode = 255
    M len = -1
    M rq_id = -1
    M rq_source = 255
    M last_tid = 0
    M last_mode = 0
    M rfc_req = 0
    M report = > <
    M action = 0
    M tab_name = > <
    M
    M *****************************************************************************
    M *
    M * LOCATION SAP-Server sapsrv_TBC_00 on host sapsrv (wp 0)
    M * ERROR tskh_init: db_connect
    M *
    M * TIME Mon May 29 15:33:26 2006
    M * RELEASE 46C
    M * COMPONENT Taskhandler
    M * VERSION 1
    M * RC 13
    M * MODULE thxxhead.c
    M * LINE 7930
    M * COUNTER 1
    M *
    M *****************************************************************************
    M
    M ***LOG Q02=> wp_halt, WPStop (Workproc 0 1824) [dpnttool.c 300]
    5. SAP-R/3-Startup Program
    Starting at 2006/05/29 15:32:46
    Startup Profile: "E:\usr\sap\TBC\sys\profile\START_DVEBMGS00_sapsrv"
    Starting Programs
    (1540) Execute: E:\usr\sap\TBC\SYS\exe\run\strdbs.cmd TBC
    (232) CreateProcess: E:\usr\sap\TBC\SYS\exe\run\msg_server.exe pf=E:\usr\sap\TBC\SYS\profile\TBC_DVEBMGS00_sapsrv
    (1628) CreateProcess: E:\usr\sap\TBC\SYS\exe\run\disp+work.exe pf=E:\usr\sap\TBC\SYS\profile\TBC_DVEBMGS00_sapsrv
    sapsrv\Administrator is stopping R/3 System at 2006/05/29 15:34:55
    (840) Parent Shutdown at 2006/05/29 15:34:55
    (840) kill(1628) failed
    6.sqlnet
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleTBC)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=TBC)(CID=(PROGRAM=E:\usr\sap\TBC\SYS\exe\run\disp+work.EXE)(HOST=sapsrv)(USER=SAPServiceTBC))))
    VERSION INFORMATION:
    TNS for 32-bit Windows: Version 8.1.7.0.0 - Production
    Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 8.1.7.0.0 - Production
    Time: 29-MAR-2006 18:25:40
    Tracing not turned on.
    Tns error struct:
    nr err code: 0
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 2
    nt OS err code: 0
    7. stderr2
    E:\usr\sap\TBC\DVEBMGS00\work>echo connect internal 1>v8start.sql
    E:\usr\sap\TBC\DVEBMGS00\work>echo startup 1>>v8start.sql
    Oracle Server Manager Release 3.1.7.0.0 - Production
    Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    JServer Release 8.1.7.0.0 - Production
    Connected.
    ORACLE instance started.
    Total System Global Area 143796252 bytes
    Fixed Size 75804 bytes
    Variable Size 70942720 bytes
    Database Buffers 71720960 bytes
    Redo Buffers 1056768 bytes
    Database mounted.
    ORA-16014: log 11 sequence# 1549 not archived, no available destinations
    ORA-00312: online log 11 thread 1: 'E:\ORACLE\TBC\ORIGLOGA\LOG_G11M1.DBF'
    ORA-00312: online log 11 thread 1: 'E:\ORACLE\TBC\MIRRLOGA\LOG_G11M2.DBF'
    Server Manager complete.
    8.stderr3
    sapparam: Illegal Parameter in Default Profile: "DIR_CLIENT_ORAHOME". (no Default-Value)
    sapparam: Illegal Parameter in Default Profile: "DIR_SERVER_ORAHOME". (no Default-Value)
    rslgwr1(21): Searching for overlap point in pre-existing SysLog file...
    9.tcp\ip
    Copyright (c) 1993-1999 Microsoft Corp.
    This file contains port numbers for well-known services defined by IANA
    Format:
    <service name> <port number>/<protocol> [aliases...] [#<comment>]
    echo 7/tcp
    echo 7/udp
    discard 9/tcp sink null
    discard 9/udp sink null
    systat 11/tcp users #Active users
    systat 11/tcp users #Active users
    daytime 13/tcp
    daytime 13/udp
    qotd 17/tcp quote #Quote of the day
    qotd 17/udp quote #Quote of the day
    chargen 19/tcp ttytst source #Character generator
    chargen 19/udp ttytst source #Character generator
    ftp-data 20/tcp #FTP, data
    ftp 21/tcp #FTP. control
    telnet 23/tcp
    smtp 25/tcp mail #Simple Mail Transfer Protocol
    time 37/tcp timserver
    time 37/udp timserver
    rlp 39/udp resource #Resource Location Protocol
    nameserver 42/tcp name #Host Name Server
    nameserver 42/udp name #Host Name Server
    nicname 43/tcp whois
    domain 53/tcp #Domain Name Server
    domain 53/udp #Domain Name Server
    bootps 67/udp dhcps #Bootstrap Protocol Server
    bootpc 68/udp dhcpc #Bootstrap Protocol Client
    tftp 69/udp #Trivial File Transfer
    gopher 70/tcp
    finger 79/tcp
    http 80/tcp www www-http #World Wide Web
    kerberos 88/tcp krb5 kerberos-sec #Kerberos
    kerberos 88/udp krb5 kerberos-sec #Kerberos
    hostname 101/tcp hostnames #NIC Host Name Server
    iso-tsap 102/tcp #ISO-TSAP Class 0
    rtelnet 107/tcp #Remote Telnet Service
    pop2 109/tcp postoffice #Post Office Protocol - Version 2
    pop3 110/tcp #Post Office Protocol - Version 3
    sunrpc 111/tcp rpcbind portmap #SUN Remote Procedure Call
    sunrpc 111/udp rpcbind portmap #SUN Remote Procedure Call
    auth 113/tcp ident tap #Identification Protocol
    uucp-path 117/tcp
    nntp 119/tcp usenet #Network News Transfer Protocol
    ntp 123/udp #Network Time Protocol
    epmap 135/tcp loc-srv #DCE endpoint resolution
    epmap 135/udp loc-srv #DCE endpoint resolution
    netbios-ns 137/tcp nbname #NETBIOS Name Service
    netbios-ns 137/udp nbname #NETBIOS Name Service
    netbios-dgm 138/udp nbdatagram #NETBIOS Datagram Service
    netbios-ssn 139/tcp nbsession #NETBIOS Session Service
    imap 143/tcp imap4 #Internet Message Access Protocol
    pcmail-srv 158/tcp #PCMail Server
    snmp 161/udp #SNMP
    snmptrap 162/udp snmp-trap #SNMP trap
    print-srv 170/tcp #Network PostScript
    bgp 179/tcp #Border Gateway Protocol
    irc 194/tcp #Internet Relay Chat Protocol
    ipx 213/udp #IPX over IP
    ldap 389/tcp #Lightweight Directory Access Protocol
    https 443/tcp MCom
    https 443/udp MCom
    microsoft-ds 445/tcp
    microsoft-ds 445/udp
    kpasswd 464/tcp # Kerberos (v5)
    kpasswd 464/udp # Kerberos (v5)
    isakmp 500/udp ike #Internet Key Exchange
    exec 512/tcp #Remote Process Execution
    biff 512/udp comsat
    login 513/tcp #Remote Login
    who 513/udp whod
    cmd 514/tcp shell
    syslog 514/udp
    printer 515/tcp spooler
    talk 517/udp
    ntalk 518/udp
    efs 520/tcp #Extended File Name Server
    router 520/udp route routed
    timed 525/udp timeserver
    tempo 526/tcp newdate
    courier 530/tcp rpc
    conference 531/tcp chat
    netnews 532/tcp readnews
    netwall 533/udp #For emergency broadcasts
    uucp 540/tcp uucpd
    klogin 543/tcp #Kerberos login
    kshell 544/tcp krcmd #Kerberos remote shell
    new-rwho 550/udp new-who
    remotefs 556/tcp rfs rfs_server
    rmonitor 560/udp rmonitord
    monitor 561/udp
    ldaps 636/tcp sldap #LDAP over TLS/SSL
    doom 666/tcp #Doom Id Software
    doom 666/udp #Doom Id Software
    kerberos-adm 749/tcp #Kerberos administration
    kerberos-adm 749/udp #Kerberos administration
    kerberos-iv 750/udp #Kerberos version IV
    kpop 1109/tcp #Kerberos POP
    phone 1167/udp #Conference calling
    ms-sql-s 1433/tcp #Microsoft-SQL-Server
    ms-sql-s 1433/udp #Microsoft-SQL-Server
    ms-sql-m 1434/tcp #Microsoft-SQL-Monitor
    ms-sql-m 1434/udp #Microsoft-SQL-Monitor
    wins 1512/tcp #Microsoft Windows Internet Name Service
    wins 1512/udp #Microsoft Windows Internet Name Service
    ingreslock 1524/tcp ingres
    l2tp 1701/udp #Layer Two Tunneling Protocol
    pptp 1723/tcp #Point-to-point tunnelling protocol
    radius 1812/udp #RADIUS authentication protocol
    radacct 1813/udp #RADIUS accounting protocol
    nfsd 2049/udp nfs #NFS server
    knetd 2053/tcp #Kerberos de-multiplexor
    man 9535/tcp #Remote Man Server
    sapdp00 3200/tcp
    sapgw00 3300/tcp
    sapgw00s 4800/tcp
    sapmsTBC 3600/tcp
    sapdp01 3201/tcp
    sapdp02 3202/tcp
    sapdp03 3203/tcp
    sapdp04 3204/tcp
    sapdp05 3205/tcp
    sapdp06 3206/tcp
    sapdp07 3207/tcp
    sapdp08 3208/tcp
    sapdp09 3209/tcp
    sapdp10 3210/tcp
    sapdp11 3211/tcp
    sapdp12 3212/tcp
    sapdp13 3213/tcp
    sapdp14 3214/tcp
    sapdp15 3215/tcp
    sapdp16 3216/tcp
    sapdp17 3217/tcp
    sapdp18 3218/tcp
    sapdp19 3219/tcp
    sapdp20 3220/tcp
    sapdp21 3221/tcp
    sapdp22 3222/tcp
    sapdp23 3223/tcp
    sapdp24 3224/tcp
    sapdp25 3225/tcp
    sapdp26 3226/tcp
    sapdp27 3227/tcp
    sapdp28 3228/tcp
    sapdp29 3229/tcp
    sapdp30 3230/tcp
    sapdp31 3231/tcp
    sapdp32 3232/tcp
    sapdp33 3233/tcp
    sapdp34 3234/tcp
    sapdp35 3235/tcp
    sapdp36 3236/tcp
    sapdp37 3237/tcp
    sapdp38 3238/tcp
    sapdp39 3239/tcp
    sapdp40 3240/tcp
    sapdp41 3241/tcp
    sapdp42 3242/tcp
    sapdp43 3243/tcp
    sapdp44 3244/tcp
    sapdp45 3245/tcp
    sapdp46 3246/tcp
    sapdp47 3247/tcp
    sapdp48 3248/tcp
    sapdp49 3249/tcp
    sapdp50 3250/tcp
    sapdp51 3251/tcp
    sapdp52 3252/tcp
    sapdp53 3253/tcp
    sapdp54 3254/tcp
    sapdp55 3255/tcp
    sapdp56 3256/tcp
    sapdp57 3257/tcp
    sapdp58 3258/tcp
    sapdp59 3259/tcp
    sapdp60 3260/tcp
    sapdp61 3261/tcp
    sapdp62 3262/tcp
    sapdp63 3263/tcp
    sapdp64 3264/tcp
    sapdp65 3265/tcp
    sapdp66 3266/tcp
    sapdp67 3267/tcp
    sapdp68 3268/tcp
    sapdp69 3269/tcp
    sapdp70 3270/tcp
    sapdp71 3271/tcp
    sapdp72 3272/tcp
    sapdp73 3273/tcp
    sapdp74 3274/tcp
    sapdp75 3275/tcp
    sapdp76 3276/tcp
    sapdp77 3277/tcp
    sapdp78 3278/tcp
    sapdp79 3279/tcp
    sapdp80 3280/tcp
    sapdp81 3281/tcp
    sapdp82 3282/tcp
    sapdp83 3283/tcp
    sapdp84 3284/tcp
    sapdp85 3285/tcp
    sapdp86 3286/tcp
    sapdp87 3287/tcp
    sapdp88 3288/tcp
    sapdp89 3289/tcp
    sapdp90 3290/tcp
    sapdp91 3291/tcp
    sapdp92 3292/tcp
    sapdp93 3293/tcp
    sapdp94 3294/tcp
    sapdp95 3295/tcp
    sapdp96 3296/tcp
    sapdp97 3297/tcp
    sapdp98 3298/tcp
    sapdp99 3299/tcp
    sapgw01 3301/tcp
    sapgw02 3302/tcp
    sapgw03 3303/tcp
    sapgw04 3304/tcp
    sapgw05 3305/tcp
    sapgw06 3306/tcp
    sapgw07 3307/tcp
    sapgw08 3308/tcp
    sapgw09 3309/tcp
    sapgw10 3310/tcp
    sapgw11 3311/tcp
    sapgw12 3312/tcp
    sapgw13 3313/tcp
    sapgw14 3314/tcp
    sapgw15 3315/tcp
    sapgw16 3316/tcp
    sapgw17 3317/tcp
    sapgw18 3318/tcp
    sapgw19 3319/tcp
    sapgw20 3320/tcp
    sapgw21 3321/tcp
    sapgw22 3322/tcp
    sapgw23 3323/tcp
    sapgw24 3324/tcp
    sapgw25 3325/tcp
    sapgw26 3326/tcp
    sapgw27 3327/tcp
    sapgw28 3328/tcp
    sapgw29 3329/tcp
    sapgw30 3330/tcp
    sapgw31 3331/tcp
    sapgw32 3332/tcp
    sapgw33 3333/tcp
    sapgw34 3334/tcp
    sapgw35 3335/tcp
    sapgw36 3336/tcp
    sapgw37 3337/tcp
    sapgw38 3338/tcp
    sapgw39 3339/tcp
    sapgw40 3340/tcp
    sapgw41 3341/tcp
    sapgw42 3342/tcp
    sapgw43 3343/tcp
    sapgw44 3344/tcp
    sapgw45 3345/tcp
    sapgw46 3346/tcp
    sapgw47 3347/tcp
    sapgw48 3348/tcp
    sapgw49 3349/tcp
    sapgw50 3350/tcp
    sapgw51 3351/tcp
    sapgw52 3352/tcp
    sapgw53 3353/tcp
    sapgw54 3354/tcp
    sapgw55 3355/tcp
    sapgw56 3356/tcp
    sapgw57 3357/tcp
    sapgw58 3358/tcp
    sapgw59 3359/tcp
    sapgw60 3360/tcp
    sapgw61 3361/tcp
    sapgw62 3362/tcp
    sapgw63 3363/tcp
    sapgw64 3364/tcp
    sapgw65 3365/tcp
    sapgw66 3366/tcp
    sapgw67 3367/tcp
    sapgw68 3368/tcp
    sapgw69 3369/tcp
    sapgw70 3370/tcp
    sapgw71 3371/tcp
    sapgw72 3372/tcp
    sapgw73 3373/tcp
    sapgw74 3374/tcp
    sapgw75 3375/tcp
    sapgw76 3376/tcp
    sapgw77 3377/tcp
    sapgw78 3378/tcp
    sapgw79 3379/tcp
    sapgw80 3380/tcp
    sapgw81 3381/tcp
    sapgw82 3382/tcp
    sapgw83 3383/tcp
    sapgw84 3384/tcp
    sapgw85 3385/tcp
    sapgw86 3386/tcp
    sapgw87 3387/tcp
    sapgw88 3388/tcp
    sapgw89 3389/tcp
    sapgw90 3390/tcp
    sapgw91 3391/tcp
    sapgw92 3392/tcp
    sapgw93 3393/tcp
    sapgw94 3394/tcp
    sapgw95 3395/tcp
    sapgw96 3396/tcp
    sapgw97 3397/tcp
    sapgw98 3398/tcp
    sapgw99 3399/tcp
    10.
    Microsoft Windows 2000 [Version 5.00.2195]
    (C) Copyright 1985-2000 Microsoft Corp.
    C:\>startsap r3 TBC TBC_DEVBMGS00_sapsrv
    STARTSAP failed
    Details are written to C:
    start.log
    C:\>startsap r3 TBC START_DEVBMGS00_sapsrv
    STARTSAP failed
    Details are written to C:
    start.log
    C:\>tp connect TBC
    This is tp version 305.12.36 (release 46C) for ANY database
    E-TPPARAM could not be opened.
    EXIT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
    could not access file as supposed (see SLOG for more details)
    C:\>r3trans -d -v
    This is r3trans version 6.05 (release 46C - 09.08.01 - 15:20:00).
    2EETW169 no connect possible: "DBMS = ORACLE --- dbs_o
    ra_tnsname = 'TBC'"
    r3trans finished (0012).
    C:\>sappfpar check pf=TBC_DEVBMGS00_sapsrv
    sapparam(2): fopenU("TBC_DEVBMGS00_sapsrv","r"): No such file or directory
    No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    ================================================================================
    == Checking profile:
    ================================================================================
    Shared memory disposition overview
    ================================================================
    Key: 1 Size: 2000 ( 0.0 MB) System administration
    Key: 2 Size: 961296 ( 0.9 MB) Disp. administration tables
    Key: 3 Size: 13714400 ( 13.1 MB) Disp. communication areas
    Key: 4 Size: 503248 ( 0.5 MB) statistic area
    Key: 5 Size: 4096 ( 0.0 MB) SCSA area
    Key: 6 Size: 159744000 ( 152.3 MB) ABAP program buffer
    Key: 7 Size: 14838 ( 0.0 MB) Update task administration
    Key: 8 Size: 63242340 ( 60.3 MB) Paging buffer
    Key: 9 Size: 137625700 ( 131.2 MB) Roll buffer
    Key: 11 Size: 500000 ( 0.5 MB) Factory calender buffer
    Key: 12 Size: 3000000 ( 2.9 MB) TemSe Char-Code convert Buf.
    Key: 13 Size: 10500000 ( 10.0 MB) Alert Area
    Key: 14 Size: 4400000 ( 4.2 MB) Presentation buffer
    Key: 16 Size: 22400 ( 0.0 MB) Semaphore activity monitoring
    Key: 17 Size: 772900 ( 0.7 MB) Roll administration
    Key: 18 Size: 917604 ( 0.9 MB) Paging adminitration
    Key: 19 Size: 6000000 ( 5.7 MB) Table-buffer
    Key: 30 Size: 22200 ( 0.0 MB) Taskhandler Runtime Admin
    Key: 31 Size: 1806000 ( 1.7 MB) Dispatcher request queue
    Key: 33 Size: 2048000 ( 2.0 MB) Table buffer, part.buffering
    Key: 41 Size: 9010000 ( 8.6 MB) DB statistics buffer
    Key: 42 Size: 3620592 ( 3.5 MB) DB TTAB buffer
    Key: 43 Size: 32534392 ( 31.0 MB) DB FTAB buffer
    Key: 44 Size: 7958392 ( 7.6 MB) DB IREC buffer
    Key: 45 Size: 4886392 ( 4.7 MB) DB short nametab buffer
    Key: 46 Size: 20480 ( 0.0 MB) DB sync table
    Key: 47 Size: 3073024 ( 2.9 MB) DB CUA buffer
    Key: 48 Size: 300000 ( 0.3 MB) Number range buffer
    Key: 49 Size: 3000000 ( 2.9 MB) Spool admin (SpoolWP+DiaWP)
    Key: 51 Size: 3200000 ( 3.1 MB) Extended memory admin.
    Key: 52 Size: 40000 ( 0.0 MB) Message Server buffer
    Key: 54 Size: 4202496 ( 4.0 MB) Export/Import buffer
    Key: 55 Size: 8192 ( 0.0 MB) Spool local printer+joblist
    Key: 57 Size: 1048576 ( 1.0 MB) Profil in shared Memory
    Key: 58 Size: 4096 ( 0.0 MB) EnqId
    Key: 1002 Size: 400000 ( 0.4 MB) Performance monitoring V01.0
    Nr of operating system shared memory segments: 36
    Shared memory resource requirements estimated
    ================================================================
    Total Nr of shared segments required.....: 36
    Shared memory segment size required min..: 159744000 ( 152.3 MB)
    Swap space requirements estimated
    ================================================
    Shared memory....................: 456.9 MB
    Processes........................: 23.6 MB
    Extended Memory .................: 991.0 MB
    Total, minimum requirement.......: 1471.6 MB
    Process local heaps, worst case..: 1907.3 MB
    Total, worst case requirement....: 3378.9 MB
    Errors detected..................: 0
    Warnings detected................: 0
    C:\>ps -ef
    'ps' is not recognized as an internal or external command,
    operable program or batch file.
    C:\>ps -u
    'ps' is not recognized as an internal or external command,
    operable program or batch file.
    C:\>ipconfig/all
    Windows 2000 IP Configuration
    Host Name . . . . . . . . . . . . : sapsrv
    Primary DNS Suffix . . . . . . . :
    Node Type . . . . . . . . . . . . : Broadcast
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : Microsoft Loopback Adapter
    Physical Address. . . . . . . . . : 02-00-4C-4F-4F-50
    DHCP Enabled. . . . . . . . . . . : Yes
    Autoconfiguration Enabled . . . . : Yes
    Autoconfiguration IP Address. . . : 169.254.25.129
    Subnet Mask . . . . . . . . . . . : 255.255.0.0
    Default Gateway . . . . . . . . . :
    DNS Servers . . . . . . . . . . . :
    C:\>hostname
    sapsrv
    C:\>sapntchk
    SAPNTCHK for Windows NT (3.2.0.0)
    ==================================
    - Program Arguments ... [OK] ( 0.004 sec)
    - System-Informations ...
    Exception Handling
    ==================
    C:\>gwmon
    call gwmon with following parameters:
    pf=<profile> : Specify Name of parameter file or
    nr=<nr> : System number
    [-e all] : Reset error counts of all connections
    [-e <conn no> : Reset error count of specified connection
    [-V] : Print release
    [-refresh n] : Refresh after n seconds
    [-gwhost host] : Hostname of remote gateway
    [-gwserv service] : Service of remote gateway
    [-noheader] : Suppress headers
    [-cmdfile file] : Execute commands from cmdfile
    if filename '-' read from stdin
    C:\>gwmon sapsrv
    Connect to gateway on host sapsrv, service sapgw00 failed
    ERROR partner not reached (host sapsrv, service sapgw00)
    TIME Mon May 29 17:42:06 2006
    RELEASE 46C
    COMPONENT NI (network interface)
    VERSION 34
    RC -10
    MODULE ninti.c
    LINE 1008
    DETAIL NiPConnect2
    SYSTEM CALL SO_ERROR
    ERRNO 10061
    ERRNO TEXT WSAECONNREFUSED: Connection refused
    COUNTER 1
    C:\>tp connect TBC
    This is tp version 305.12.36 (release 46C) for ANY database
    E-TPPARAM could not be opened.
    EXIT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
    could not access file as supposed (see SLOG for more details)
    C:\>tp showbuffer TBC
    This is tp version 305.12.36 (release 46C) for ANY database
    E-TPPARAM could not be opened.
    EXIT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
    could not access file as supposed (see SLOG for more details)
    C:\>sapstart.exe r3 TBC START_DEVBMGS00_sapsrv -wait
    SAPSTART failed
    Message was edited by:
            Sathyanarayanan Melath

    i donot know but i have the new log.
    dev_w0
    trc file: "dev_w0", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2028

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2028) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T0
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:10 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...

    C Fri Mar 23 00:17:11 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:11 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2028) [dpnttool.c   300]
    dev_w1
    trc file: "dev_w1", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        1192

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 1 1192) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 1 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T1
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:40 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 1

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 1)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:40 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 1 1192) [dpnttool.c   300]
    dev_w2
    trc file: "dev_w2", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2164

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 2 2164) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T2
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:51 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 2

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 2)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:51 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 2 2164) [dpnttool.c   300]
    dev_w3
    trc file: "dev_w3", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2168

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 3 2168) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 3 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T3
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:46 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...

    C Fri Mar 23 00:17:47 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 3

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 3)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:47 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 3 2168) [dpnttool.c   300]
    dev_w4
    trc file: "dev_w4", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2284

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 4 2284) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 4 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T4
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:40 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 4

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 4)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:40 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 4 2284) [dpnttool.c   300]
    dev_w5
    trc file: "dev_w5", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2064

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 5 2064) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 5 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T5
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:44 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 5

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 5)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:44 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 5 2064) [dpnttool.c   300]
    dev_w6
    trc file: "dev_w6", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2252

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 6 2252) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 6 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T6
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:10 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...

    C Fri Mar 23 00:17:11 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 6

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 6)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:11 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 6 2252) [dpnttool.c   300]
    dev_w7
    trc file: "dev_w7", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        1704

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 7 1704) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 7 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T7
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:40 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 7

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 7)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:40 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 7 1704) [dpnttool.c   300]
    dev_w8
    trc file: "dev_w8", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2124

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 8 2124) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 8 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T8
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:51 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 8

    M    stat = 4
    M    reqtype = 2
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 8)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:51 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 8 2124) [dpnttool.c   300]
    dev_w9
    trc file: "dev_w9", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2208

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 9 2208) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 9 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T9
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:40 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 9

    M    stat = 4
    M    reqtype = 2
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 9)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:40 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc 9 2208) [dpnttool.c   300]
    dev_w10
    trc file: "dev_w10", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        1732

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc10 1732) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 10 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T10
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:44 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 10

    M    stat = 4
    M    reqtype = 3
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 10)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:44 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc10 1732) [dpnttool.c   300]
    dev_w11
    trc file: "dev_w11", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2220

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc11 2220) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 11 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T11
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:37 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...

    C Fri Mar 23 00:17:38 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 11

    M    stat = 4
    M    reqtype = 4
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 11)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:38 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc11 2220) [dpnttool.c   300]
    dev_w12
    trc file: "dev_w12", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  patchno    748
    M  intno      0
    M  pid        2128

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc12 2128) [dpxxdisp.c   912]
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 12 initializing ....
    X  Using implementation std
    M  <ES> Memory Reset enabled
    X  ES initialized.
    M  ThSysUsrCheck: clear T12
    M  calling db_connect ...
    B  find_con found the following connection for reuse:
    B  0: name = R/3, concnt= 000000 state = DISCONNECTED, perm = YES, reco = NO
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...

    C Fri Mar 23 00:17:40 2007
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@TBC on connection 0 ...
    C  *** ERROR => OCI-call 'olog' failed: rc = 1033
    [dboci.c      2423]
    C  *** ERROR => CONNECT failed with sql error '1033'
    [dboci.c      6721]
    B  ***LOG BY2=> sql error 1033   performing CON [dbsh    0695 ]
    B  ***LOG BY0=>  [dbsh    0695 ]
    B  ***LOG BY2=> sql error 1033   performing CON [dblink  0627 ]
    B  ***LOG BY0=>  [dblink  0627 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1093]
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   7850]

    M  Info for wp 12

    M    stat = 4
    M    reqtype = 4
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TBC_00 on host sapsrv (wp 12)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Fri Mar 23 00:17:40 2007
    M  *  RELEASE     46D
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        7930
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  ***LOG Q02=> wp_halt, WPStop (Workproc12 2128) [dpnttool.c   300]
    dev_w13
    trc file: "dev_w13", trc level: 1, release: "46D"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Fri Mar 23 00:16:07 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' loaded
    B  Version of library 'C:\usr\sap\TBC\SYS\exe\run\dboraslib.dll' is "46D.00", patchlevel (0.575)
    B  New connection 0 created
    M  relno      4640
    M  patchlevel 0
    M  pa

  • Error propagating servlet user to peer?

    Hello,
    We currently have a Windows 2003 Server 32bit running ColdFusion 8.01 with 3 instances named: cfusion, Instance1 and Instance2. Instance 1 and Instance 2 are clustered together and serving all our sites in IIS. We're hosting just over 200 sites with approx. 6-7 hits a second.
    ColdFusion is running with all the latest hot fixes and patches. The JVM is version 1.6_24.
    For a while now one of the instances in the cluster randomly  locks up a few times a month, fails to return pages and has high cpu usage. We'd normally just restart the instance and things would return to normal. It's bad to ignore things but it's only recently I've had a chance to look into the cause of these lock ups.
    Last night both the instances appeared to fail. We have an external monitor that hits our sites every 5 minutes to ensure they are still running.
    Scanning through the JRun logs at about the time we received our first monitor warning there are a bunch of what appear to be propagation errors on both instances.
    Logs from Instance1:
    22/03 07:10:14 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:16 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:17 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:18 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:20 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:21 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:23 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:23 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:24 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:24 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:25 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:26 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:26 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:26 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:26 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:27 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:28 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:28 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:10:29 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketTimeoutException: Read timed out
    22/03 07:17:43 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    Logs from Instance2:
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:40 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset by peer: socket write error
    22/03 07:10:41 info Clusterable service JRunRMIBroker discovered ClusterManager on xxx.xxx.xxx.xxx:3862, cluster domain: cluster1 (Lookup Service's JINI-ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)
    22/03 07:10:42 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset
    22/03 07:10:42 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.io.EOFException
    22/03 07:10:42 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset
    22/03 07:10:42 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.net.SocketException: Connection reset
    22/03 07:10:42 warning Error propagating servlet user to peer: error during JRMP connection establishment; nested exception is:
        java.io.EOFException
    22/03 07:10:43 error ROOT CAUSE:
    java.lang.OutOfMemoryError: unable to create new native thread
        at java.lang.Thread.start0(Native Method)
        at java.lang.Thread.start(Thread.java:640)
    I suspect it's a JVM memory issue, however I have no way of extracting or creating memory logs without bringing all our sites down again.
    I only know the basics of how the JVM heap space works but my guess is that one of the instances can't create any more threads because the PermGen space has run out and it's killing the cluster.
    Here's our current JVM settings: java.args=-server -Xmx768m -Xms768m -Dsun.io.useCanonCaches=false -XX:MaxPermSize=192m -XX:+UseParallelGC -Dcoldfusion.fckupload=true -Dcoldfusion.rootDir={application.home}/
    Has anyone come across this issue before or has any ideas on how to better debug the issue with minimal impact on uptime?

    Well the classes should be in WEB-INF/classes, but I don't think that's your problem.
    Getting an applet to connect to a db is notoriously difficult (so I've heard - I've never tried it), so having the applet talk to the servlet with the servlet in turn talking to the db is a good idea.
    "i cant see the error message because it wont print in the VM,"
    That doesn't sound right. What does your error handling code look like?
    " MySQL it also has access permissions for some weird reason."
    MySQL is set up so that user credentials are only valid from a specific host unless you explicitly tell it that a user can connect from anywhere. This is native to MySQL and has nothing to do with java or JDBC.
    Most of the code you posted throws Exceptions. Are you catching them, and if so what did they say?

  • Dispatcher stopped when starting up instance

    Hi
    Please help me been trying to look for a solution to this problem.
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        SRM
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    41
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        2736
    Mon Oct 08 10:01:42 2007
    kernel runs with dp version 210000(ext=109000) (@(#) DPLIB-INT-VERSION-210000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2736) [dpxxdisp.c   1227]
         shared lib "dw_xml.dll" version 41 successfully loaded
         shared lib "dw_xtc.dll" version 41 successfully loaded
         shared lib "dw_stl.dll" version 41 successfully loaded
         shared lib "dw_gui.dll" version 41 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    Mon Oct 08 10:01:46 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5227]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpShMCreate: sizeof(wp_adm)          9856     (1408)
    DpShMCreate: sizeof(tm_adm)          3954072     (19672)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1452)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05F00040, size: 4604696)
    DpShMCreate: allocated sys_adm at 05F00040
    DpShMCreate: allocated wp_adm at 05F01E28
    DpShMCreate: allocated tm_adm_list at 05F044A8
    DpShMCreate: allocated tm_adm at 05F044D8
    DpShMCreate: allocated wp_ca_adm at 062C9A70
    DpShMCreate: allocated appc_ca_adm at 062CF830
    DpShMCreate: allocated comm_adm at 062D1770
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 06352630
    DpShMCreate: allocated gw_adm at 06352670
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 063526A0
    DpShMCreate: allocated wall_adm at 063526A8
    MBUF state OFF
    Mon Oct 08 10:01:47 2007
    EmInit: MmSetImplementation( 2 ).
    MM diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 2936
      argv[0] = E:\usr\sap\SRM\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\SRM\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\SRM\SYS\profile\SRM_DVEBMGS01_sapccsrm
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1046
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=SRM
      argv[7] = -DSAPMYNAME=sapccsrm_SRM_01
      argv[8] = -DSAPPROFILE=E:\usr\sap\SRM\SYS\profile\SRM_DVEBMGS01_sapccsrm
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1613]
    ***LOG Q0K=> DpMsAttach, mscon ( sapccsrm) [dpxxdisp.c   11310]
    Mon Oct 08 10:01:48 2007
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Mon Oct 08 10:01:49 2007
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 41
    Release check o.K.
    Mon Oct 08 10:01:58 2007
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1560
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:1052) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=2936)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Mon Oct 08 10:02:27 2007
    ERROR => W0 (pid 2944) died [dpxxdisp.c   13892]
    ERROR => W1 (pid 2952) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 2960) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 2968) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 2976) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W5 (pid 2984) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W6 (pid 2992) died [dpxxdisp.c   13892]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:37 2007
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Mon Oct 08 02:02:37 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     2944 Ended         no      1   0             0                                                             
    1 DIA     2952 Ended         no      1   0             0                                                             
    2 UPD     2960 Ended         no      1   0             0                                                             
    3 ENQ     2968 Ended         no      1   0             0                                                             
    4 BTC     2976 Ended         no      1   0             0                                                             
    5 SPO     2984 Ended         no      1   0             0                                                             
    6 UP2     2992 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Mon Oct 08 02:02:37 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    5
    5
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     6 ( 75%),  shm     2 ( 25%)
    since last update     total     8,  udp     6 ( 75%),  shm     2 ( 25%)
    Dump of tm_adm structure:               Mon Oct 08 02:02:37 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Mon Oct 08 02:02:37 2007
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:42 2007
    NiISelect: TIMEOUT occured (5000ms)
    Shutdown server ...
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (2920) (SOFT_KILL)
    Stop icman
    killing process (2928) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:2920  HANDLE:1632)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:43 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2920  HANDLE:1632)
    wait for end of icman
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:44 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:45 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:46 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:47 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:48 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:49 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:50 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:51 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:52 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:53 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:2928  HANDLE:1640)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1661
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 08 10:02:54 2007
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:2928  HANDLE:1640)
    [DpProcDied] Process died  (PID:2936  HANDLE:1616)
    NiIMyHostName: hostname = 'sapccsrm'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11594]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 1584 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 1584 (pos=3)
    SiSelNRemove: removed sock 1584
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/7
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 1584
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 2736) [dpxxdisp.c   9983]
    Good Bye .....

    Hi wee,
    It is possibly the network issue,not the problem with the installation/configuration/memory setup.
    Try restarting the whoel machine,may be DNS configuration may be corrected after the rebbot.
    Thats what the log says "Mon Oct 08 10:01:46 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c 5227]"
    Also start the instance manually after the machine restart.
    If it doesn't work,there could be some problem with OS.
    reward points if helpful............

  • Getting error while hitting weblogic server from EBS client instance

    Hi,
    We are trying to hit weblogic server from EBS client instance.
    Steps Done from our side :-
    1. Created a self signed key store and certificate (.cer file) with server host name and used it for SSL enabling on weblogic server.
    2. Created a self signed key store and certificate (.cer file) with client host name and used it for SSL enabling on oracle EBS client.
    3. Imported client certificate .cer file in Server Side Trust Store.
    4. Used Server keystore for client side verification.
    We are getting these logs from Client Side (Oracle EBS AS) :-
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:33 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    <Nov 9, 2012 10:40:34 AM AST> <Warning> <Security> <BEA-090542> <Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    javax.net.ssl.SSLKeyException: [Security:090542]Certificate chain received from whjed-ebspay.nmc.com - 192.168.100.169 was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.handshake.ClientStateReceivedServerHello.handle(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessage(Unknown Source)
    at com.certicom.tls.record.handshake.HandshakeHandler.handleHandshakeMessages(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
    at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
    at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.WriteHandler.write(Unknown Source)
    at com.certicom.io.OutputSSLIOStreamWrapper.write(Unknown Source)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
    at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
    at weblogic.net.http.HttpURLConnection.writeRequests(HttpURLConnection.java:158)
    at weblogic.net.http.HttpURLConnection.getInputStream(HttpURLConnection.java:363)
    at oracle.apps.nmc.filetransmission.DigitalSigner.sendSignedFileToBank(DigitalSigner.java:532)
    at oracle.apps.nmc.filetransmission.DigitalSigner.signXmlFile(DigitalSigner.java:330)
    at oracle.apps.nmc.filetransmission.DigitalSigner.invokerInit(DigitalSigner.java:437)
    at oracle.apps.nmc.filetransmission.DigitalSigner.runProgram(DigitalSigner.java:390)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    We are getting these logs from Server Side (Weblogic server) :-
    <Nov 9, 2012 10:34:51 AM AST> <Warning> <Security> <BEA-090482> <BAD_CERTIFICATE alert was received from whjed-apstest3.nmc.com - 192.168.100.246. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Kindly suggest on this.
    Regards
    Deepak Gupta

    Hi;
    Please make a search BEA-090482 Check the peer to determine why it rejected at metalink. There are 8 docs avaliable, please review them
    Regard
    Helios

  • SAP PRD Instance stopped (yellow color)

    Hello all,
    Our Sap System stopped yesterday (08.09.09) between 15:00 and 15:30 hours. (The SAP instance changed from green color to yellow color in OS system)
    The log of this time in the SM21 are:
    15:26:34 DP                                       Q0  4 Connection to user 5587 ( ), terminal 71 (Unisordk53a ) lost          
    15:27:09 DP                                       Q0  I Operating system call recv failed (error no. 10054)                   
    15:27:09 DP                                       Q0  4 Connection to user 5584 ( ), terminal 77 (unisordk82 ) lost           
    15:27:09 DP                                       Q0  I Operating system call recv failed (error no. 10054)                   
    15:27:09 DP                                       Q0  4 Connection to user 5588 ( ), terminal 40 (unisordk82 ) lost           
    15:28:35 RD                                       Q0  I Operating system call recv failed (error no. 10054)                   
    15:28:51 UP2  017                                 Q0  2 Stop Workproc17, PID 5148                                             
    15:28:51 UP1  011                                 Q0  2 Stop Workproc11, PID 5812                                             
    15:28:52 ENQ  012                                 Q0  2 Stop Workproc12, PID 5400                                             
    15:29:52 BTC  015 500 INTERFACE                   Q0  2 Stop Workproc15, PID 5484                                             
    15:29:52 DIA  002 500 PRICORREA    FBL5           Q0  2 Stop Workproc 2, PID 5432                                             
    15:29:52 DIA  004                                 Q0  2 Stop Workproc 4, PID 7888                                             
    15:29:52 DIA  005 500 JSANTOS      STAR           Q0  2 Stop Workproc 5, PID 5124                                             
    15:29:52 BTC  013 500 INTERFACE                   Q0  2 Stop Workproc13, PID 5084                                             
    15:29:53 DIA  001 500 IMELLO       J1B3           Q0  2 Stop Workproc 1, PID 5088                                             
    15:29:53 BTC  014 500 INTERFACE                   Q0  2 Stop Workproc14, PID 5640                                             
    15:29:53 DIA  003 500 FATURASOR    ZSD0           Q0  2 Stop Workproc 3, PID 3580                                             
    15:29:53 DIA  007 500 BASIS        STAR           Q0  2 Stop Workproc 7, PID 5300                                             
    15:29:53 SPO  016 000 SAPSYS                      Q0  2 Stop Workproc16, PID 632                                              
    15:29:53 DIA  008 500 SNUNES       SESS           Q0  2 Stop Workproc 8, PID 5236                                             
    15:29:53 DIA  009 500 SNUNES       SESS           Q0  2 Stop Workproc 9, PID 3924                                             
    15:29:53 RD                                       S3  0 SAP gateway was closed                                                
    15:30:54 DP                                       Q0  M Message server disconnected                                           
    15:30:54 DP                                       Q0  5 Stop SAP System, Dispatcher Pid 29                                    
    15:30:57 MS                                       Q0  2 Stop Msg Server, PID 1864                                             
    15:32:01 DP                                       E1  0 Buffer SCSA Generated with Length 4096                                
    15:32:01 DP                                       Q0  0 Start SAP System, SAPSYSTEM 02, Dispatcher Pid 6448                   
    15:32:15 DP                                       GZ  Z > 1 possible network problems detected - check tracefile and adjus    
    15:32:15 DP                                       Q0  K Connection to message server (on unisp05) established                 
    15:32:15 WRK  000                                 Q0  Q Start Workproc 2, Pid 3824                                            
    15:32:15 RD                                       S0  0 SAP Gateway Started (PID: 1840)                                       
    15:32:15 WRK  000                                 Q0  Q Start Workproc 0, Pid 6268                                            
    15:32:15 WRK  000                                 Q0  Q Start Workproc 5, Pid 3584                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 7, Pid 5432                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 1, Pid 6872                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 3, Pid 7768                                            
    15:32:16 DP                                       Q1  C MsgServer Hardware ID Was Determined                                  
    15:32:16 WRK  000                                 Q0  Q Start Workproc15, Pid 6580                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc10, Pid 5300                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 6, Pid 7888                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc12, Pid 7228                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 4, Pid 7692                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc13, Pid 6228                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 8, Pid 3580                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc16, Pid 5744                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc14, Pid 6860                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc11, Pid 1688                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc 9, Pid 5484                                            
    15:32:16 WRK  000                                 Q0  Q Start Workproc17, Pid 8152                                            
    Anybody know what should be the problem and besides where should i  search for the problem?
    Best Regards,
    Fábio Karnik Tchobnian
    Edited by: Fio Tchobnian on Sep 9, 2009 5:22 PM

    The dev_disp log  near the error is :
    Tue Sep 08 15:27:09 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer)
    ERROR => NiIRead: SiRecv failed for hdl 58 / sock 732
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.1.114:1508)
    Network error of client T77, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T77 is 192.168.1.114(unisordk82.unimetalcoque.intra)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (5584 77 unisordk82 )
    RM-T77, U5584,                 , unisordk82, 15:21:46, M0, W-1,     , 1/0
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer)
    ERROR => NiIRead: SiRecv failed for hdl 14 / sock 1272
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.1.114:1519)
    Network error of client T40, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T40 is 192.168.1.114(unisordk82.unimetalcoque.intra)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (5588 40 unisordk82 )
    RM-T40, U5588,                 , unisordk82, 15:23:38, M0, W-1,     , 1/0
    Tue Sep 08 15:27:18 2009
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Tue Sep 08 15:27:58 2009
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Tue Sep 08 15:28:38 2009
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (1 rqs)
    Tue Sep 08 15:28:50 2009
    DpSigInt: caught signal 2
    DpHalt: shutdown server >unisp05_PRD_02                          < (normal)
    DpModState: change server state from ACTIVE to SHUTDOWN
    Stop work processes
    Any idea of what is the problem?
    Best Regards,
    Fábio Karnik Tchobnian

  • Application Server instance shutdown for no apparent reason

    Hi Experts,
    Our production ECC 6.0 Application server instance work process ended by itself, and this is the second time it happens;
    Our Platform is;
    Windows 2003 server, ECC 6.0, SQL Server 2005,
    Kernel Release : 150
    here are the sm21, dev_disp, dev_icm, dev_rd, dev_w0 logs;
    How can i prevent this error,
    Regards
    sm21 logs;
    03:02:49 RD                                  Q0  I Operating system call recv failed (error no. 10054)
    03:02:49 RD                                  Q0  I Operating system call recv failed (error no. 10054)
    03:02:49 RD                                  Q0  I Operating system call recv failed (error no. 10054)
    03:02:49 RD                                  Q0  I Operating system call recv failed (error no. 10054)
    03:02:50 RD                                  S3  0 SAP gateway was closed
    03:03:00 DP                                  Q0  M Message server disconnected
    03:03:00 DP                                  Q0  5 Stop SAP System, Dispatcher Pid 28
    dev_disp;
    Tue Aug 12 21:15:12 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 7 / sock 164
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.0.211:1592) [nixxi.cpp    4424]
    Network error of client T28, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T28 is 192.168.0.211(192.168.0.211)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (11539HASANS 28 EnAltDepo ) [dpxxdisp.c   11577]
    RM-T28, U11539, 100       HASANS, EnAltDepo, 21:14:47, M1, W1,     , 3/1
    Wed Aug 13 03:02:48 2008
    DpSigInt: caught signal 2
    DpHalt: shutdown server >sapapp1_KEC_00                          < (normal)
    DpModState: change server state from ACTIVE to SHUTDOWN
    Stop work processes
    Wed Aug 13 03:02:49 2008
    Stop gateway
    Stop icman
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    waiting for termination of gateway ...
    Wed Aug 13 03:02:50 2008
    wait for end of icman
    waiting for termination of icman ...
    Wed Aug 13 03:02:51 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:52 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:53 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:54 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:55 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:56 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:57 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:58 2008
    waiting for termination of icman ...
    Wed Aug 13 03:02:59 2008
    DpStartStopMsg: send stop message (myname is >sapapp1_KEC_00                          <)
    DpStartStopMsg: stop msg sent
    Wed Aug 13 03:03:00 2008
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12213]
    MBUF state OFF
    MBUF component DOWN
    cleanup EM
    ***LOG Q05=> DpHalt, DPStop ( 2804) [dpxxdisp.c   10461]
    dev_rd ;
    Thu Aug 07 10:51:11 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 13 / sock 464
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:3707) [nixxi.cpp    4424]
    Wed Aug 13 03:02:34 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 43 / sock 468
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.0.201:2898) [nixxi.cpp    4424]
    Wed Aug 13 03:02:49 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 14 / sock 440
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2503) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 5 / sock 44
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4669) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 38 / sock 52
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2508) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 3 / sock 492
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2421) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 8 / sock 420
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2480) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 9 / sock 408
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2481) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 10 / sock 396
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2482) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 11 / sock 384
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2483) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 37 / sock 72
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:3043) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 41 / sock 40
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2657) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 480
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:3318) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 40 / sock 48
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:3462) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 13 / sock 464
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4059) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 12 / sock 372
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2862) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 15 / sock 340
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:2548) [nixxi.cpp    4424]
    Wed Aug 13 03:02:50 2008
    ***LOG S30=> GwStopGateway, gateway stopped () [gwxxrd.c     14656]
    dev_icm ;
    trc file: "dev_icm", trc level: 1, release: "700"
    sysno      00
    sid        KEC
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    148
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3012
    [Thr 3008] started security log to file dev_icm_sec
    [Thr 3008] ICM running on: sapapp1.koyuncu.com.tr
    [Thr 3008] MtxInit: 30001 0 2
    [Thr 3008] IcmInit: listening to admin port: 65000
    [Thr 3008] DpSysAdmExtCreate: ABAP is active
    [Thr 3008] DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    [Thr 3008] Thu Jul 10 09:14:17 2008
    [Thr 3008] DpShMCreate: sizeof(wp_adm)          42016     (1616)
    [Thr 3008] DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    [Thr 3008] DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    [Thr 3008] DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    [Thr 3008] DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    [Thr 3008] DpShMCreate: sizeof(comm_adm)          552080     (1088)
    [Thr 3008] DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    [Thr 3008] DpShMCreate: sizeof(slock_adm)          0     (104)
    [Thr 3008] DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    [Thr 3008] DpShMCreate: sizeof(file_adm)          0     (72)
    [Thr 3008] DpShMCreate: sizeof(vmc_adm)          0     (1864)
    [Thr 3008] DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    [Thr 3008] DpShMCreate: sizeof(gw_adm)     48
    [Thr 3008] DpShMCreate: SHM_DP_ADM_KEY          (addr: 0000000001FB0050, size: 6365440)
    [Thr 3008] DpShMCreate: allocated sys_adm at 0000000001FB0050
    [Thr 3008] DpShMCreate: allocated wp_adm at 0000000001FB2150
    [Thr 3008] DpShMCreate: allocated tm_adm_list at 0000000001FBC570
    [Thr 3008] DpShMCreate: allocated tm_adm at 0000000001FBC5D0
    [Thr 3008] DpShMCreate: allocated wp_ca_adm at 0000000002520470
    [Thr 3008] DpShMCreate: allocated appc_ca_adm at 0000000002526230
    [Thr 3008] DpShMCreate: allocated comm_adm at 0000000002528170
    [Thr 3008] DpShMCreate: system runs without slock table
    [Thr 3008] DpShMCreate: system runs without file table
    [Thr 3008] DpShMCreate: allocated vmc_adm_list at 00000000025AEE00
    [Thr 3008] DpShMCreate: allocated gw_adm at 00000000025AEE80
    [Thr 3008] DpShMCreate: system runs without vmc_adm
    [Thr 3008] DpShMCreate: allocated ca_info at 00000000025AEEB0
    [Thr 3384] IcmProxyWatchDog: proxy watchdog started
    [Thr 3008] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 0
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 1
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 2
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 3
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 4
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 5
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 6
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 7
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 8
    [Thr 3008] IcmCreateWorkerThreads: created worker thread 9
    [Thr 3428] IcmWatchDogThread: watchdog started
    [Thr 3432] *** WARNING => HttpPlugInInit: Parameter icm/HTTPS/trust_client_with_issuer or icm/HTTPS/trust_client_with_subject not set => do not trust any intermediary
    X.509 cert data will be removed from header [http_plg.c   720]
    [Thr 3432] ISC: created 400 MB disk cache.
    [Thr 3432] ISC: created 50 MB memory cache.
    [Thr 3432] HttpSubHandlerAdd: Added handler HttpCacheHandler(slot=0, flags=12293) for /:0
    [Thr 3432] HttpExtractArchive: files from archive E:\usr\sap\KEC\D00\exe/icmadmin.SAR in directory E:/usr/sap/KEC/D00/data/icmanroot are up to date
    [Thr 3432] HttpSubHandlerAdd: Added handler HttpAdminHandler(slot=1, flags=4101) for /sap/admin:0
    [Thr 3432] CsiInit(): Initializing the Content Scan Interface
    [Thr 3432]            PC with Windows NT (mt,unicode,SAP_CHAR/size_t/void* = 16/64/64)
    [Thr 3432] CsiInit(): CSA_LIB = "E:\usr\sap\KEC\D00\exe\sapcsa.dll"
    [Thr 3432] Thu Jul 10 09:14:18 2008
    [Thr 3432] HttpSubHandlerAdd: Added handler HttpAuthHandler(slot=2, flags=12293) for /:0
    [Thr 3432] HttpSubHandlerAdd: Added handler HttpSAPR3Handler(slot=3, flags=1052677) for /:0
    [Thr 3432] Started service 8000 for protocol HTTP on host "sapapp1.koyuncu.com.tr"(on all adapters) (processing timeout=60, keep_alive_timeout=30)
    [Thr 3432] Thu Jul 10 09:14:24 2008
    [Thr 3432] *** WARNING => IcmNetCheck: NiAddrToHost(10.0.0.1) took 6 seconds [icxxman.c    4578]
    [Thr 3432] *** WARNING => IcmNetCheck: 1 possible network problems detected - please check the network/DNS settings [icxxman.c    4634]
    [Thr 3008] Tue Jul 22 16:47:29 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 1 broken (rc=-8,nirc=-6)
    [Thr 3008] Tue Jul 22 16:49:43 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 2 broken (rc=-8,nirc=-6)
    [Thr 3008] Wed Jul 23 15:06:44 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 1 broken (rc=-8,nirc=-6)
    [Thr 3008] Wed Jul 23 15:23:34 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 1 broken (rc=-8,nirc=-6)
    [Thr 3008] Wed Jul 23 16:54:47 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 2 broken (rc=-8,nirc=-6)
    [Thr 3008] Thu Aug 07 09:50:19 2008
    [Thr 3008] *** WARNING => IcmMsgProcess: connection to WP 0 broken (rc=-8,nirc=-6)
    [Thr 3384] Wed Aug 13 03:02:58 2008
    [Thr 3384] IcmProxyWatchDog: Shutdown request received
    [Thr 3384] *** IcmProxyWatchDog: exit thread ***
    [Thr 3428] Wed Aug 13 03:02:59 2008
    [Thr 3428] IcmWatchDogThread: Shutdown request received
    [Thr 3428] *** IcmWatchDogThread: exit thread ***
    [Thr 3008] IcmLoop: Shutdown request received
    [Thr 3008] Deactivated service 8000 for protocol HTTP on host: "sapapp1.koyuncu.com.tr"(on all adapters) (timeout=30)
    [Thr 3008] Deactivated service 0 for protocol SMTP on host: "sapapp1.koyuncu.com.tr"(on all adapters) (timeout=30)
    [Thr 3008] Removed service 8000 for protocol HTTP on host: "sapapp1.koyuncu.com.tr"(on all adapters) (timeout=30)
    [Thr 3008] Removed service 0 for protocol SMTP on host: "sapapp1.koyuncu.com.tr"(on all adapters) (timeout=30)
    [Thr 3008] *** ICM shutdown completed (pid: 3012) ***
    dev_w0
    A Mon Aug 11 09:32:57 2008
    A  GENER starting inline generation: AQA0SYSTQV000006ZFI_MBL_001=== (reason: explicit generation).

    A Mon Aug 11 09:35:51 2008
    A  GENER starting remote generation: /1BCDWB/SAPLIQ000000000079 (requested by W1).

    M Mon Aug 11 11:08:35 2008
    M  *** WARNING => ThSndDelUser: delete client/user 100/HIKMETB      (T100) on server sapapp1_KEC_00     

    M Mon Aug 11 11:40:23 2008
    M  *** WARNING => ThSndDelUser: delete client/user 100/MURATU       (T81) on server sapapp2_KEC_00     

    M Mon Aug 11 11:51:37 2008
    M  *** WARNING => ThSndDelUser: delete client/user 100/HIKMETB      (T28) on server sapapp1_KEC_00     

    M Mon Aug 11 12:21:53 2008
    M  *** WARNING => ThSndDelUser: delete client/user 100/HIKMETB      (T99) on server sapapp1_KEC_00     

    A Mon Aug 11 22:28:59 2008
    A  GENER starting remote generation: SAPL0F21 (requested by W1).

    M Tue Aug 12 09:47:58 2008
    M  *** WARNING => PfStatWrite: missing STAT_END for opcode STAT_GUI [pfxxstat.c   4133]

    M Tue Aug 12 15:34:33 2008
    M  ***LOG US1=> Login, Wrong Password (UMITK ) [sign.c       4523]

    M Wed Aug 13 03:02:48 2008
    M  in_ThErrHandle: 1
    M  ThIErrHandle: new stat of W0 is WP_SHUTDOWN   
    M  ThIErrHandle: I'm during shutdown
    M  PfStatDisconnect: disconnect statistics
    M  Entering ThSetStatError
    M  ThCallDbBreak: use db_sqlbreak
    C  SQLBREAK: DBSL_CMD_SQLBREAK: CbOnCancel was not set. rc: 1
    M  ThIErrHandle: don't try rollback again
    M  ThShutDownServer: shutdown server
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 INACTIVE     NO  YES NO  000 255 255 20080807 095145 SAPDB          

    B Wed Aug 13 03:02:49 2008
    B  Disconnected from connection 0
    B  statistics db_con_commit (com_total=252484, com_tx=21560)
    B  statistics db_con_rollback (roll_total=984, roll_tx=11)
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 4192) [dpnttool.c   333]

    Hi, i have the equal problem :
    Fri Sep 11 11:51:48 2009
    TRACE FILE TRUNCATED ( pid =     2328 )
    sysno      00
    sid        PRD
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    201
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2328
    kernel runs with dp version 242(ext=110) (@(#) DPLIB-INT-VERSION-242)
    length of sys_adm_ext is 364 bytes
    Fri Sep 11 12:01:34 2009
    SoftCancel request for T39 U9644 M2 received from REMOTE_TERMINAL
    Fri Sep 11 12:05:20 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 24 / sock 808
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.254.87:2122) [nixxi.cpp    4424]
    Network error of client T28, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T28 is 192.168.254.87(192.168.254.87)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (9645 MAGAZZ-ORIO 28 paolo ) [dpxxdisp.c   12205]
    RM-T28, U9645, 200  MAGAZZ-ORIO, paolo, 12:05:20, M2, W5,     , 3/1
    Fri Sep 11 12:18:01 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 23 / sock 1120
        (SI_ECONN_BROKEN/10054; I4; ST; 192.168.254.98:1542) [nixxi.cpp    4424]
    Network error of client T80, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T80 is 192.168.254.98(192.168.254.98)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (9730 MAGAZZ-ORIO 80 HP-DIREZIONE) [dpxxdisp.c   12205]
    RM-T80, U9730, 200  MAGAZZ-ORIO, HP-DIREZIONE, 12:17:23, M0, W10, SP02, 2/1
    Fri Sep 11 13:21:19 2009
    DpHdlDeadWp: restart wp (pid=4152) automatically
    Fri Sep 11 14:06:55 2009
    SoftCancel request for T56 U9281 M4 received from REMOTE_TERMINAL

  • How to Terminate the BPM Process instance

    Hi,
    If I have an instance of bpm process which fault at the database service task, I want to manually terminate or suspend it. I tried to do it in the workspace as an bpm administrator, however, since the instance pass the human task already, so that i can't suspend the instance. On the enterprise manager console, I don't see any way to terminate one instance. Please advise and it is so important and urgent for me, since our bpm project already on prodction, we have to fix it as soon as possible. Thanks in advance

    I'm thinking you're asking what you can do with an instance that has an uncaught exception and not how to have modeled it so they can be properly handled. If you're not catching the exception, in any of the 7 techniques listed below - you're kind of stuck.
    If you have a service task and you'd like to handle the exception (manually or other), you have the choices listed below. If you are using none of these, then you're allowing the BPMN engine to handle the exception and about all you can do is to delete the instance in Enterprise Manager.
    1) You could add a catch error event to the boundary of the Service task and have that event designated to handle the exception thrown. From the boundary event, you might have a sequence flow to an Interactive activity that lets you hande the exception. Once handled, the instance can continue on with the process.
    2) You could add an event subprocess in the same process as the Service activity that has a start error event and have that event designated to handle the exception thrown. From the event subprocess, you might have a sequence flow to an Interactive activity that lets you hande the exception. The difference between this scenario and the first is that the instance in the process has to terminate in the end event in the event subprocess.
    3) If your process is invoked as an embedded subprocess, you could add a boundary event (1 above) or catch it in an event subprocess (2 above).
    4) If your process is a reusable process invoked from a parent process using a Call activity, if the exception isn't caught inside the called subprocess you could add a boundary event to the Call activity in the parent process. This is similiar to 1 above and you'd need a sequence flow comingin out of the boundary catch error event on the Call activity to go somewhere in the process to handle the exception.
    5) If your process is a reusable process invoked from a parent process using a Call activity, if the exception isn't caught inside the called subprocess and it is not caught by a boundary error event on the parent's call activity then you could add an event subprocess in the parent process that has a start error event and have that event designated to handle the exception thrown inside the child process.
    6) There is a way to handle exceptions thrown inside a peer process but I'm guessing that might be too much for this post.
    7) You can handle exceptions using a Policy outside of the processes. Rather than using the above to handle exceptions, you could use policy based exception handling where you give the policy the different types of faults you want to catch and if you want to retry, let it be handled by someone in Enterprise Manager and if you just want to abort the instance.
    If the exception is not caught, then you're in the scenario you're in now and the BPMN engine is where it is unfortunately caught. Although you can see it, it is a non-recoverable exception and about all you can do is delete the instance in Enterprise Manager.
    Hope this helps,
    Dan

  • Remote Desktop on Mac connecting to 2008 R2 Server produces "Connection Reset by Peer" error when idle 20 mins

    Mac Clients are running 10.9.2 Mavericks. 
    Client is Microsoft Remote Desktop 8.05.
    Clients are mixed in how they connect to the Windows 2008 R2 server, some
    are on Wifi some are on Wired Ethernet.
    If you connect to the Server through the RD Client, and get on you work 
    and if you then say go idle  ( still connected but not doing anything such as 
    printing from the Server or in an Application on the Server) then after 20 mins it
    (the client) throws up a "Connection reset by Peer" error.
    You click OK, and then it breaks connection. You can however reconnect without issue.
    We have currently about six users who are using the RD Connection to access QuickBooks on
    this 2008 R2 server. Four are on Macs and get the errors. Two are on PCs and do not get the errors.
    Here is the log file from one of the Macs that had the error:
    [2014-Apr-07 10:34:07] RDP (0): Server shows cursor
    [2014-Apr-07 10:34:09] RDP (0): Server hides cursor
    [2014-Apr-07 10:34:21] RDP (0): Server shows cursor
    [2014-Apr-07 10:34:22] RDP (0): Server hides cursor
    [2014-Apr-07 10:34:25] RDP (0): Server shows cursor
    [2014-Apr-07 11:00:29] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 11:00:29] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 11:00:29] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 11:02:35] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 11:02:35] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 11:02:35] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 11:02:35] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 11:02:35] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 11:02:35] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 11:02:35] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 11:02:35] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 11:02:35] RDP (0): client version: 8.0.24428
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 11:02:35] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 11:02:35] RDP (0): Server supports RAIL
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 11:02:35] RDP (0): Server supports RAIL
    [2014-Apr-07 11:02:35] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 11:09:38] RDP (0): Server hides cursor
    [2014-Apr-07 11:09:38] RDP (0): Server shows cursor
    [2014-Apr-07 12:16:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 12:16:31] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 12:16:31] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 12:21:42] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 12:21:42] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 12:21:42] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 12:21:42] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 12:21:42] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 12:21:42] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 12:21:42] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 12:21:42] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 12:21:42] RDP (0): client version: 8.0.24428
    [2014-Apr-07 12:21:42] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 12:21:42] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 12:21:42] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 12:21:43] RDP (0): Server supports RAIL
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 12:21:43] RDP (0): Server supports RAIL
    [2014-Apr-07 12:21:43] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 15:30:19] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 15:30:19] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 15:30:19] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 15:30:22] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 15:30:22] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 15:30:22] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 15:30:22] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 15:30:22] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-07 15:30:22] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 15:30:22] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 15:30:22] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 15:30:22] RDP (0): client version: 8.0.24428
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 15:30:22] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 15:30:22] RDP (0): Server supports RAIL
    [2014-Apr-07 15:30:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 15:30:23] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 15:30:23] RDP (0): Server supports RAIL
    [2014-Apr-07 15:30:23] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:24] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 16:52:24] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 16:52:24] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 16:52:27] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-07 16:52:27] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-07 16:52:27] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 16:52:27] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-07 16:52:27] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-07 16:52:27] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-07 16:52:27] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-07 16:52:27] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-07 16:52:27] RDP (0): client version: 8.0.24428
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-07 16:52:27] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-07 16:52:27] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:28] RDP (0): Server supports RAIL
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:28] RDP (0): Server supports RAIL
    [2014-Apr-07 16:52:28] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-07 16:52:40] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-07 16:52:40] RDP (0): Disconnect initiated by server
    [2014-Apr-07 16:52:45] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-07 16:52:45] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-07 16:52:45] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-07 16:58:19] RDP (0): *** Application terminated ***
    [2014-Apr-08 10:00:23] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 10:00:23] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 10:00:23] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:00:23] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:00:23] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 10:00:23] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 10:00:23] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 10:00:23] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 10:00:23] RDP (0): client version: 8.0.24428
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 10:00:23] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:00:23] RDP (0): Server supports RAIL
    [2014-Apr-08 10:00:23] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 10:00:38] RDP (0): Server hides cursor
    [2014-Apr-08 10:00:40] RDP (0): Server shows cursor
    [2014-Apr-08 10:08:35] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 10:08:35] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 10:08:35] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 10:08:39] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 10:08:39] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 10:08:39] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:08:39] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 10:08:39] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-08 10:08:39] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 10:08:39] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 10:08:39] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 10:08:39] RDP (0): client version: 8.0.24428
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 10:08:39] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:08:39] RDP (0): Server supports RAIL
    [2014-Apr-08 10:08:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 10:08:40] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 10:08:40] RDP (0): Server supports RAIL
    [2014-Apr-08 10:08:40] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:02:36] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 11:02:36] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 11:02:36] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 11:04:38] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.25
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 11:04:38] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 11:04:38] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:04:38] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:04:38] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 11:04:38] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 11:04:38] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 11:04:38] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 11:04:38] RDP (0): client version: 8.0.24428
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 11:04:38] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 11:04:38] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:04:38] RDP (0): Server supports RAIL
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:04:39] RDP (0): Server supports RAIL
    [2014-Apr-08 11:04:39] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:04:49] RDP (0): Server hides cursor
    [2014-Apr-08 11:04:50] RDP (0): Server shows cursor
    [2014-Apr-08 11:04:51] RDP (0): Server hides cursor
    [2014-Apr-08 11:04:55] RDP (0): Server shows cursor
    [2014-Apr-08 11:05:09] RDP (0): Server hides cursor
    [2014-Apr-08 11:05:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:33] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:44] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:49] RDP (0): Server hides cursor
    [2014-Apr-08 11:06:50] RDP (0): Server shows cursor
    [2014-Apr-08 11:06:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:02] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:06] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:14] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:26] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:32] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:35] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:36] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:07:38] RDP (0): Server hides cursor
    [2014-Apr-08 11:07:38] RDP (0): Server shows cursor
    [2014-Apr-08 11:17:05] RDP (0): Server hides cursor
    [2014-Apr-08 11:17:08] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:53] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:54] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:54] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:58] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:58] RDP (0): Server shows cursor
    [2014-Apr-08 11:26:58] RDP (0): Server hides cursor
    [2014-Apr-08 11:26:58] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:05] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:06] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:15] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:15] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:15] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:15] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:17] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:17] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:22] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:22] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:23] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:25] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:25] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:25] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:25] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:26] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:29] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:29] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:31] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:31] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:32] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:33] RDP (0): Server shows cursor
    [2014-Apr-08 11:27:35] RDP (0): Server hides cursor
    [2014-Apr-08 11:27:36] RDP (0): Server shows cursor
    [2014-Apr-08 11:29:50] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 11:29:50] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 11:29:50] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 11:30:04] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 11:30:04] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 11:30:04] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:30:04] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 11:30:04] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 11:30:04] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 11:30:04] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 11:30:04] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 11:30:04] RDP (0): client version: 8.0.24428
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 11:30:04] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:30:04] RDP (0): Server supports RAIL
    [2014-Apr-08 11:30:04] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:30:05] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 11:30:05] RDP (0): Server supports RAIL
    [2014-Apr-08 11:30:05] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 11:30:11] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:11] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:11] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:11] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:12] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:12] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:30] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:31] RDP (0): Server shows cursor
    [2014-Apr-08 11:30:31] RDP (0): Server hides cursor
    [2014-Apr-08 11:30:31] RDP (0): Server shows cursor
    [2014-Apr-08 14:45:21] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 14:45:21] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 14:45:21] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 15:11:03] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 15:11:03] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 15:11:03] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 15:11:03] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 15:11:03] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-08 15:11:03] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 15:11:03] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 15:11:03] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 15:11:03] RDP (0): client version: 8.0.24428
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 15:11:03] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:11:03] RDP (0): Server supports RAIL
    [2014-Apr-08 15:11:03] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 15:11:04] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:11:04] RDP (0): Server supports RAIL
    [2014-Apr-08 15:11:04] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 15:22:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 15:22:36] RDP (0): Disconnect initiated by server
    [2014-Apr-08 15:22:41] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 15:22:41] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 15:22:41] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 16:29:11] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-08 16:29:11] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-08 16:29:11] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 16:29:11] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-08 16:29:11] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-08 16:29:11] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-08 16:29:11] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-08 16:29:11] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-08 16:29:11] RDP (0): client version: 8.0.24428
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-08 16:29:11] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-08 16:29:11] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 16:29:12] RDP (0): Server supports RAIL
    [2014-Apr-08 16:29:12] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-08 16:29:51] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-08 16:29:51] RDP (0): Disconnect initiated by server
    [2014-Apr-08 16:29:56] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-08 16:29:56] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-08 16:29:56] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-08 16:37:07] RDP (0): *** Application terminated ***
    [2014-Apr-09 09:24:29] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 09:24:29] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 09:24:29] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 09:24:29] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 09:24:29] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-09 09:24:29] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 09:24:29] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 09:24:29] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 09:24:29] RDP (0): client version: 8.0.24428
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 09:24:29] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 09:24:29] RDP (0): Server supports RAIL
    [2014-Apr-09 09:24:29] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 09:24:45] RDP (0): Server hides cursor
    [2014-Apr-09 09:24:46] RDP (0): Server shows cursor
    [2014-Apr-09 09:24:46] RDP (0): Server hides cursor
    [2014-Apr-09 09:24:49] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:08] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:10] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:15] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:27] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:30] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:31] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:33] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:34] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:38] RDP (0): Server hides cursor
    [2014-Apr-09 09:25:48] RDP (0): Server shows cursor
    [2014-Apr-09 09:25:50] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:40] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:40] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:41] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:41] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:41] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:53] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:53] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:53] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:53] RDP (0): Server shows cursor
    [2014-Apr-09 09:26:58] RDP (0): Server hides cursor
    [2014-Apr-09 09:26:58] RDP (0): Server shows cursor
    [2014-Apr-09 09:27:20] RDP (0): Server hides cursor
    [2014-Apr-09 09:27:22] RDP (0): Server shows cursor
    [2014-Apr-09 09:27:23] RDP (0): Server hides cursor
    [2014-Apr-09 09:27:23] RDP (0): Server shows cursor
    [2014-Apr-09 10:10:53] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:10:53] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 10:10:53] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 10:10:56] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:10:56] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:10:56] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:10:56] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:10:56] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:10:56] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:10:56] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:10:56] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:10:56] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:10:56] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:10:56] RDP (0): Server supports RAIL
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:10:56] RDP (0): Server supports RAIL
    [2014-Apr-09 10:10:56] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:12:00] RDP (0): Server hides cursor
    [2014-Apr-09 10:12:01] RDP (0): Server shows cursor
    [2014-Apr-09 10:16:50] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:16:50] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 10:16:50] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 10:22:22] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:22:22] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:22:22] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:22:22] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en1 af=30 (AF_INET6) addr=fe80::ee35:86ff:fe3b:e3d8%en1 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:22:22] RDP (0): en1 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:22:22] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:22:22] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:22:22] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:22:22] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:22:22] RDP (0): Resolved '192.168.16.x' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:22:22] RDP (0): Server supports RAIL
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:22:22] RDP (0): Server supports RAIL
    [2014-Apr-09 10:22:22] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:26:40] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-Apr-09 10:26:40] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 10:26:40] RDP (0): *** Application terminated ***
    [2014-Apr-09 10:27:28] RDP (0): *** Application terminated ***
    [2014-Apr-09 10:28:36] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:m
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 10:28:36] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 10:28:36] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:28:36] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 10:28:36] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.1xx netmask=255.255.255.0
    [2014-Apr-09 10:28:36] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 10:28:36] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 10:28:36] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 10:28:36] RDP (0): client version: 8.0.24428
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 10:28:36] RDP (0): Resolved '192.168.16.25' to '192.168.16.x' using NameResolveMethod_DNS(1)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:28:36] RDP (0): Server supports RAIL
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 10:28:36] RDP (0): Server supports RAIL
    [2014-Apr-09 10:28:36] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:11] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-Apr-09 11:33:11] RDP (0): Exception caught: Exception in file '../../librdp/legacytcpstreamadapter.cpp' at line 322
    User Message : Failed to read from socket: -1
    [2014-Apr-09 11:33:11] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-Apr-09 11:33:18] RDP (0): Final rdp configuration used: screen mode id:i:2
    use multimon:i:1
    session bpp:i:24
    full address:s:192.168.16.x
    audiomode:i:0
    username:s:michele.lefebvre
    disable wallpaper:i:0
    disable full window drag:i:0
    disable menu anims:i:0
    disable themes:i:0
    alternate shell:s:
    shell working directory:s:
    authentication level:i:2
    connect to console:i:0
    gatewayusagemethod:i:0
    disable cursor setting:i:0
    allow font smoothing:i:1
    allow desktop com:1
    bookmarktype:i:3
    use redirection server name:i:0
    [2014-Apr-09 11:33:18] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=30 (AF_INET6) addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=2 (AF_INET) addr=127.0.0.1 netmask=255.0.0.0
    [2014-Apr-09 11:33:18] RDP (0): lo0 af=30 (AF_INET6) addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 11:33:18] RDP (0): gif0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): stf0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en0 af=30 (AF_INET6) addr=fe80::12dd:b1ff:febe:9771%en0 netmask=ffff:ffff:ffff:ffff::
    [2014-Apr-09 11:33:18] RDP (0): en0 af=2 (AF_INET) addr=192.168.16.195 netmask=255.255.255.0
    [2014-Apr-09 11:33:18] RDP (0): en1 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en4 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): en3 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): p2p0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): bridge0 af=18 addr= netmask=
    [2014-Apr-09 11:33:18] RDP (0): --- END INTERFACE LIST ---
    [2014-Apr-09 11:33:18] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Apr-09 11:33:18] RDP (0): client version: 8.0.24428
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-Apr-09 11:33:18] RDP (0): Resolved '192.168.16.25' to '192.168.16.25' using NameResolveMethod_DNS(1)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolNegotiatingCredentials(2)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolConnectingRDP(3)
    [2014-Apr-09 11:33:18] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 11:33:19] RDP (0): Server supports RAIL
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolInactive(4)
    [2014-Apr-09 11:33:19] RDP (0): Server supports RAIL
    [2014-Apr-09 11:33:19] RDP (0): Protocol state changed to: ProtocolActive(5)
    [2014-Apr-09 11:33:34] RDP (0): Server hides cursor
    [2014-Apr-09 11:33:38] RDP (0): Server shows cursor
    Any help would be appreciated.

    Hi,
    A connection was forcibly closed by a peer. This normally results from a loss of the connection on the remote socket due to a timeout or a restart. On a datastream socket, the
    connection was reset. This reset could be generated locally by the network system when it detects a connection failure, or it might be received from the remote host (in TCP terms, the remote host sent an RST packet). This error is also possible on a datagram
    socket; for instance, this error could result if your application sends a UDP datagram to a host, which rejects it by responding with an ICMP Port Unreachable.
    Please check the following:
    1. Ping the remote host you were connected to. If it does respond, this problem might have been a transient one (so you can reconnect now), or the server application you were
    connected to might have terminated (so you might not be able to connect again).
    2. Type tracert at the command prompt to determine the path to the host you were connected to. This won't reveal too much unless you know the router addresses at the remote end,
    but it might help to identify if the problem is somewhere along the way.
    3. Check if there is any related error log in the server side.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Not able to start JAVA Central Instance

    Hello All,
                      After doing JAVA Support Pack through JSPM I am not able to start the JAVA Central Instance of Solman.
    Pasting the disp+work error.
    Tue Nov 10 09:17:54 2009
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6020
      argv[0] = G:\usr\sap\DSM\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = G:\usr\sap\DSM\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=G:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS01_GOLITSAPD36
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=64990
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=DSM
      argv[7] = -DSAPMYNAME=GOLITSAPD36_DSM_01
      argv[8] = -DSAPPROFILE=G:\usr\sap\DSM\SYS\profile\DSM_DVEBMGS01_GOLITSAPD36
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    DpJ2eeLogin: j2ee state = CONNECTED
    Tue Nov 10 09:18:03 2009
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 1320
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1714) [nixxi.cpp    4424]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=6020)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Tue Nov 10 09:18:14 2009
    DpEnvCheckJ2ee: switch off j2ee start flag.
    Please suggest me.

    Hello Juan,
                        Pasting you the logs:
    dev_w0 :
    Tue Nov 10 20:41:04 2009
    A  GENER starting remote generation: BBP_ALERT_SB_NOTTRANSFERED (requested by W12).
    A  GENER starting remote generation: SAPLSI00 (requested by W12).
    A  GENER starting remote generation: SAPLBBP_PD_SC (requested by W12).

    A Tue Nov 10 20:41:10 2009
    A  GENER starting remote generation: SAPLBBP_PD (requested by W12).

    A Tue Nov 10 20:41:14 2009
    A  GENER starting remote generation: SAPLBBP_MS_C (requested by W12).
    A  GENER starting remote generation: SAPLBBP_PDH (requested by W12).

    A Tue Nov 10 20:41:17 2009
    A  GENER starting remote generation: SAPLCRM_ORDER_CB (requested by W12).

    M Tue Nov 10 21:16:04 2009
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]

    M Tue Nov 10 21:16:05 2009
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]

    M Tue Nov 10 21:41:09 2009
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]

    M Tue Nov 10 22:41:10 2009
    M  *** ERROR => SosIAnchorArrayCreatable: T17/M0 in state cancel [thxxtool2.c  947]
    std_server0.out :
    Nov 10, 2009 6:49:36 AM                            /System/Server [SAPEngine_Application_Thread[impl:3]_32] Group: EJBQL-SQL-Mapper: com.sap.sql.ejb.SQLMapper = com.sap.sql.ejb.common.CommonSQLMapper
    Nov 10, 2009 6:49:36 AM                            /System/Server [SAPEngine_Application_Thread[impl:3]_32] Group: EJBQL-SQL-Mapper: com.sap.sql.ejb.OpenSQLVerification = semantics
    Nov 10, 2009 6:49:36 AM                            /System/Server [SAPEngine_Application_Thread[impl:3]_32] Group: EJBQL-SQL-Mapper: com.sap.sql.ejb.SQLChecker = com.sap.sql.ejb.debug.OpenSQLChecker
    Nov 10, 2009 6:49:36 AM                            /System/Server [SAPEngine_Application_Thread[impl:3]_32] Group: List of currently effective properties ended.
    Nov 10, 2009 6:49:36 AM                            /System/Server [SAPEngine_Application_Thread[impl:3]_32] Group: Closing group
    SAP J2EE Engine Version 7.00   PatchLevel 51441.450 is shutting down!  PatchLevel 51441.450 November 22, 2008 15:34 GMT
    Stopping services.
      Service com.adobe~TrustManagerService stopped. (16 ms)
      Service tcdisdic~srv stopped. (0 ms)
      Service com.adobe~DocumentServicesConfiguration stopped. (0 ms)
      Service rfcengine stopped. (0 ms)
      Service webdynpro stopped. (0 ms)
      Service com.adobe~DocumentServicesDestProtoService stopped. (16 ms)
      Service pmi stopped. (31 ms)
      Service tcsecvsi~service stopped. (0 ms)
      Service tcsecdestinations~service stopped. (0 ms)
      Service tcsecwssec~service stopped. (0 ms)
      Service sld stopped. (0 ms)
      Service tcsecsecurestorage~service stopped. (0 ms)
      Service monitor stopped. (62 ms)
      Service adminadapter stopped. (0 ms)
      Service com.adobe~LicenseService stopped. (0 ms)
      Service basicadmin stopped. (15 ms)
      Service tcsmdserver~service stopped. (16 ms)
      Service configuration stopped. (0 ms)
      Service UT stopped. (0 ms)
      Service ejb stopped. (0 ms)
      Service servlet_jsp stopped. (62 ms)
      Service com.adobe~DocumentServicesLicenseSupportService stopped. (0 ms)
      Service ssl stopped. (0 ms)
      Service com.adobe~XMLFormService stopped. (16 ms)
      Service tcseccertrevoc~service stopped. (0 ms)
      Service com.adobe~DocumentServicesBinaries2 stopped. (0 ms)
      Service com.adobe~PDFManipulation stopped. (0 ms)
      Service com.adobe~DataManagerService stopped. (0 ms)
      Service keystore stopped. (0 ms)
      Service jms_provider stopped. (16 ms)
    std_dispatcher.out :
    Loading services.:
      Service keystore started. (16 ms).
      Service iiop started. (78 ms).
      Service httptunneling started. (0 ms).
      Service memory started. (15 ms).
      Service webservices started. (31 ms).
      Service security started. (0 ms).
      Service sld started. (46 ms).
      Service timeout started. (62 ms).
      Service licensing started. (16 ms).
      Service r3startup started. (125 ms).
      Service ssl started. (78 ms).
      Service jmx_notification started. (141 ms).
      Service shell started. (219 ms).
      Service telnet started. (297 ms).
      Service jmx started. (359 ms).
      Service p4 started. (985 ms).
      Service classload started. (16 ms).
      Service log_configurator started. (2968 ms).
      Service configuration started. (16 ms).
      Service jms_provider started. (1187 ms).
      Service tc.monitoring.logviewer started. (1375 ms).
      Service basicadmin started. (1328 ms).
      Service adminadapter started. (0 ms).
      Service http started. (1844 ms).
      Service monitor started. (766 ms).
    ServiceManager started for 6453 ms.
    Framework started for 10766 ms.
    SAP J2EE Engine Version 7.00   PatchLevel 51441.450 is running!
    PatchLevel 51441.450 November 22, 2008 15:34 GMT
    >
    Login :
    SAP J2EE Engine Version 7.00   PatchLevel 51441.450 is shutting down!  PatchLevel 51441.450 November 22, 2008 15:34 GMT
    Stopping services.
      Service classload stopped. (0 ms)
      Service tc.monitoring.logviewer stopped. (0 ms)
      Service p4 stopped. (16 ms)
      Service ssl stopped. (0 ms)
      Service keystore stopped. (0 ms)
      Service iiop stopped. (3000 ms)
      Service adminadapter stopped. (0 ms)
      Service monitor stopped. (15 ms)
      Service security stopped. (0 ms)
      Service jms_provider stopped. (1000 ms)
      Service basicadmin stopped. (0 ms)
      Service jmx stopped. (0 ms)
      Service webservices stopped. (0 ms)
      Service sld stopped. (0 ms)
      Service telnet stopped. (1000 ms)
      Service http stopped. (1000 ms)
      Service timeout stopped. (0 ms)
      Service configuration stopped. (0 ms)
      Service log_configurator stopped. (0 ms)
      Service memory stopped. (0 ms)
      Service r3startup stopped. (0 ms)
      Service licensing stopped. (0 ms)
      Service httptunneling stopped. (0 ms)
      Service shell stopped. (0 ms)
      Service jmx_notification stopped. (0 ms)
    Please suggest me Juan..

  • Best practice about dial-peer creating when using analog lines

    Hi,
    I am trying to find out what is the best practice when creating dial-peer for analog lines on CME, should I use trunk group or create separate dial-peer for each FXO ports? If I use trunk group, is there any advantage ( lesser dial-peer)  or disadvantage?
    Thanks!

    The advantage of trunk groups is that a single dial peer can point to for instance PSTN, rather then multiple dialpeers, with varying preference, each pointing to a separate FXO. Funtionally I can't see much difference. So I guess it also comes down to personal preference.
    =============================
    Please remember to rate useful posts, by clicking on the stars below. 
    =============================

Maybe you are looking for

  • Yahoo mail doesn't work any more in macBook mail

    Yahoo mail doesn't work any more in mac mail. Any help?

  • Panel Tabbed with regions

    Hi I have Panel Tabbed with two items inside - both contains regions inside (static - not dynamic).         <af:panelTabbed id="pt1" partialTriggers="t1">           <af:showDetailItem text="Item 1" id="s1">             <af:region value="#{bindings.em

  • How to delete all music files from iPhone4S

    I had some music files loaded on my iPhone4S. In iTunes I converted all of the files from MP3 to AAC. When the iPhone synced, it added the AAC in addition to the MP3's! I think that the only fix would be to delete all of the files from the iPhone and

  • Lost Sliders in Tone Curve Dialogue 3. & 3.2

    Windows XP- I cannot retrieve region sliders in Tone Curve in Develop module. Point curve still visible & useable. Can't find any info under communities. Anyone any ideas please? No problen on laptop Win 7 64. What have I done? Allan Devon

  • Windows 8.1 - Hyper-V Virtual Switch fails to create

    I'm running into a problem with creating a new virtual switch on my Windows 8.1 RTM box. Frist time attempt at Hyper-V on this system. The error I get is as follows: Error applying Virtual Switch Properties changes Failed while creating virtual Ether