Exit Debug Mode on M92z?

I was monkeying around in the OSD trying to see if there was a reason my newly delivered M92z's speakers wouldn't work. For the heck of it, I selected Debug Mode from the Advanced Settings menu and the black box appeared. Now it comes up whenever power is on and eventually just flashes a0... How do I exit Debug Mode?!? I've removed power for 5 minutes and pressed the OSD buttons to no avail.
The sound problem turned out to be simply unplugged speaker connection btw...
Edit: Resolved, delete if desired...

Debug mode is entered using the OSD buttons on the front. When the computer has started, press the 'Exit OSD' button (the left-most), then go back into the OSD -> Advanced Settings -> Debug Mode -> Disable.

Similar Messages

  • NWDS debug mode can only be supported by one client ?

    Hi all.
    We are 4 persons who are developing webdynpro application together.
    However, when we are using NWDS debug mode, we found that only one client debug is supported, when the second person want to debug, the first person have to exit debug mode.
    Can WAS support for more debug mode ?

    Hi Jianhong,
    Right now you have only one instance of your server,so only one debug port is available.Hence only one person at a time can debug.
    If you need to debug in development environment with more people then you have to create as many instance of server as you need.
    Recently i have seen some forum/webblog here about it.

  • Customer Exit var (basedOn 0P_KEYDT) ABAP error - Going into Debug mode

    Hello All,
    I have created a BEX Query based on Infoset, so i couldnt use '0P_KEYDT' SAP Exit in a variable.
    Instead i created a Z 'Customer exit' with the same code.
    But when i execute query in RSRT, query is going into Debug mode.
    InfoProviders are all active, when i remove the Z 'Customer Exit' from the query then query is running fine. So i see that the problem is with the Z 'Customer exit' code.
    Here is the 0P_KEYDT code:
    FUNCTION RSVAREXIT_0P_KEYDT.
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(I_VNAM) LIKE  RSZGLOBV-VNAM
    *"     VALUE(I_VARTYP) LIKE  RSZGLOBV-VARTYP
    *"     VALUE(I_IOBJNM) LIKE  RSZGLOBV-IOBJNM
    *"     VALUE(I_S_COB_PRO) TYPE  RSD_S_COB_PRO
    *"     VALUE(I_S_RKB1D) TYPE  RSR_S_RKB1D
    *"     VALUE(I_S_RKB1F) TYPE  RRO01_S_RKB1F
    *"     VALUE(I_THX_VAR) TYPE  RRO01_THX_VAR
    *"     VALUE(I_STEP) TYPE  I DEFAULT 0
    *"  EXPORTING
    *"     VALUE(E_T_RANGE) TYPE  RSR_T_RANGESID
    *"  EXCEPTIONS
    *"      UNKNOWN_VARIABLE
    *"      UNEXPECTED_VARTYPE
    *"      VARIABLE_INITIAL
      DATA:
          LS_RA_SID  TYPE   RSR_S_RANGESID.
      IF I_STEP EQ 0 OR                    " without popup or
         I_STEP EQ 1.                      " before popup
        REFRESH E_T_RANGE.
        CLEAR: LS_RA_SID.
        LS_RA_SID-SIGN = 'I'.
        LS_RA_SID-OPT = 'EQ'.
        LS_RA_SID-LOW = SY-DATUM.
        APPEND LS_RA_SID TO E_T_RANGE.
      ENDIF.
    ENDFUNCTION.
    Here is Z 'Cusotmer Exit Code:  (Defined I-STEP and E_T_RANGE)
    method ZPKEYDT.
      Data: ls_var_range TYPE rrs0_s_var_range,
            l_s_range TYPE rsr_s_rangesid.
      IF  I_STEP EQ 1.                  
    REFRESH e_t_range.
        CLEAR: l_s_range.
        l_s_range-SIGN = 'I'.
        l_s_range-OPT = 'EQ'.
        l_s_range-LOW = sy-datum.
        APPEND l_s_range TO e_t_range.
      ENDIF.
    endmethod. 
    I could really appreciate your help!
    Thanks in advance,
    DC

    Hi DeeCh.
    If you want to populate the value before the variabel screen input.then please follow below code
    case i_vnam.
      when 'ZPKEYDT'.
      if i_step = 1.
        l_s_range-low  = sy-datum..
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
          clear l_s_range.
              endif.
              endcase.
    Regards,
    Nanda.S

  • Updating Custom Table Only in Debug Mode

    Hi All!
    I have been encountering issues in updating a custom table. It would work successfully only in debug mode otherwise it won't update an entry in the table.
    This is the piece of code that would update an entry in the table specifically used in a user exit. The functionality of this code is to automatically remove a transportation block:
    SELECT SINGLE *
    INTO wa_zblock
    FROM zblock
    WHERE zzblknum EQ c_tr01
    AND vbeln EQ p_lvbeln
    AND zzprocessed EQ space.
    IF sy-subrc EQ 0.
    DO.
    CALL FUNCTION 'ENQUEUE_E_TABLES'
    EXPORTING
    MODE_RSTABLE = 'S'
    TABNAME = c_lzblock
    EXCEPTIONS
    FOREIGN_LOCK = 1
    SYSTEM_FAILURE = 2
    OTHERS = 3.
    IF sy-subrc EQ 0.
    wa_zblock-zzprocessed = c_x.
    wa_zblock-zzapproveby = sy-uname.
    wa_zblock-zzapproveon = sy-datum.
    MODIFY zblock FROM wa_zblock.
    if sy-subrc EQ 0.
    COMMIT WORK AND WAIT.
    endif.
    EXIT.
    ENDIF.
    ENDDO.
    CALL FUNCTION 'DEQUEUE_E_TABLES'
    EXPORTING
    MODE_RSTABLE = 'S'
    TABNAME = c_lzblock.
    ENDIF.
    How can I make this update the custom table successful in undebugged mode? Please let me know your thoughts on this.
    Thanks!

    I also suggest you to lock only the entry that will be updated (and not the whole table!) : you will have then far less problems of conflict with updating this table.
    For that, you have to create a lock object on your table (via SE11 - for example EZ_MY_TABLE). This will create 2 function modules named ENQUEUE_E<name of your lock object> (in my example ENQUEUE_EZ_MY_TABLE) and DEQUEUE_E<...>.
    You can then call those FM like this :
    CALL FUNCTION 'ENQUEUE_EZ_MY_TABLE'
      EXPORTING
        MODE_RSTABLE = 'S'
        KEYFIELD1 = ld_keyfield1  " Here are the key values for the entry that you have to update
        KEYFIELD2 = ld_keyfield2
      EXCEPTIONS
        FOREIGN_LOCK = 1
        SYSTEM_FAILURE = 2
        OTHERS = 3.
    Best regards,
    Samuel

  • Variable not visible in debug mode

    Hi experts,
    i created a variable using a custom exit.
    i'v added to my query, but when launch debug mode, i can't see it in I_T_VAR_RANGE table;
    but i can see others created previously.
    is that normal? do i have to do something else?
    Thanks.
    Amine

    Hi Phani,
    Thanks for your answer.
    i think that i have an issue in y code, i got the following error:
    The function call of SLS_MISC_GET_LAST_DAY_OF_MONTH failed; a field may have been assigned to the parameter DAY_IN whose"
    here is my code:
    Can you tell me what's wrong please?
    DATA: temp_date like sy-datum.
    WHEN 'ZLASTDAYMONTH'.                
         if i_step = 2.
           LOOP AT I_T_VAR_RANGE INTO FISC_VAR_RANGE
                 WHERE VNAM = 'ZTODAYDATE2'.
             CLEAR L_S_RANGE.
             call function'SLS_MISC_GET_LAST_DAY_OF_MONTH'
           exporting
             day_in = FISC_VAR_RANGE-LOW     "this is the user entry date based on ZTODAYDATE2
             importing
             last_day_of_month = temp_date.
             L_S_RANGE-LOW      = temp_date.
             L_S_RANGE-SIGN        = 'I'.
             L_S_RANGE-OPT         = 'BT'.
             APPEND L_S_RANGE TO E_T_RANGE.
             EXIT.
           ENDLOOP.
         endif.

  • WaitFor() works only when in debugging mode!

    Hi, im having a problem with making my function waits for a process to end while in run mode!
    The function always run and exists while the process is still running...
    I checked it in debugging mode and it worked just fine, but i cant seem to be able to make it work in the run mode!
    Any hints???
    Here is my code:
    public void executeBatch (){
    try{
    Runtime runtime = Runtime.getRuntime();
    Process batchProcess = runtime.exec(new String[] {"cmd.exe", "/c", "FetchFiles.bat"}, null, new File(BATCH_FILES_PATH));
    BufferedReader b = new BufferedReader(new InputStreamReader(batchProcess.getErrorStream()));
    if (b.ready()){
    String line=null;
    while ( (line = b.readLine()) != null) {
    System.out.println(line);
    line = b.readLine();
    int exitVal = batchProcess.waitFor();
    System.out.println("Exit Value = " + exitVal);
    } else {
    b = new BufferedReader(new InputStreamReader(batchProcess.getInputStream()));
    if (b.ready()){
    String line=null;
    while ( (line = b.readLine()) != null) {
    System.out.println(line);
    line = b.readLine();
    int exitVal = batchProcess.waitFor();
    System.out.println("Exit Value = " + exitVal);
    } catch ( Exception ex ){
    System.out.println("executeBatch : " + ex.getMessage());
    btw, the process is a batch that connects to a linux server and "mget" files from some directories in the server...

    what the ....???
    the "BadExecWinDir.java" bad approach is all about
    not using an executable command like "dir"... which
    im not using at all...More than that but secondary.
    >
    and for the "GoodWindowsExec.java" concept
    demonstrates that you should handle the standard
    error and standard input streams and emptying them
    both together, which what i exactly did. i USED the
    concept...
    My piece of code is the same as the
    "GoodWindowsExec.java" code except that i made the
    code of the StreamGobbler class comes inside the
    function directly, and that i didn't use a checkup on
    the operating system to decide wither it's a Windows
    NT or Windows 95 to decide the command prompt
    executable name...StreamGobbler runs as a thread so both streams are emptied in parallel. In your code
               String line=null;
                while ( (line = brError.readLine()) != null)
                    System.out.println(line);this will only terminate when the process terminates and closes stderr. This means that the following code
              while ( (line = brInput.readLine()) != null)
                    System.out.println(line);
                only starts to run once the process terminates.
    BUT, the stderr stream and stdout streams have a limited buffer and block when this buffer becomes full. So, if the stdout stream produces more than a buffer full then it blocks until more room is avaialable and the process cannot terminate so the error stream cannot be closed so the code to empty stdout cannot run to make room in the buffer to put more output. Phew!
    If you change the order of emptying the two streams then you have a simillar effect.
    The only way I know of dealing with this is to empty both streams at the same time so you need two threads. You can use the default thread for one but you MUST use another thread for the other. Since I use stdout, stderr and stdin I use 3 threads!
    >
    thats all...Please read the article again.

  • Suggestions to find the current active fields in debugging mode

    Hi All,
    I need to validate a particular entry in the screen in a particular subroutine(inside a user exit). I know the field gets populated but do not know which field is that, is there a way to know the current active fields in the debugging mode.
    Regards,
    Karthik

    Hi,
      You can create dynamic types and data for those types are run time.
      lets assume that you have structure of some type and you have work area of that type.
    DATA: lv_data type SPFLI.
    DATA: lr_rtti_struc TYPE REF TO cl_abap_structdescr.
    DATA: lt_comp       TYPE cl_abap_structdescr=>component_table.
    DATA: ls_comp       LIKE LINE OF lt_comp.
    DATA: lr_data       TYPE REF TO data.
    FIELD-SYMBOLS: <fs_data> TYPE ANY.
        lr_rtti_struc ?= cl_abap_structdescr=>describe_by_data( lv_data ).
        lt_comp = lr_rtti_struc->get_components( ).
    "Now  lets remove two fileds from the table as follows.
    LOOP AT lt_comp into ls_comp.
    DELETE lt_comp INDEX sy-tabix.
    IF sy-tabix = 2.
    EXIT. " Delete two components of the structure now lt_comp as two components less from SPFLI
    ENDIF.
    ENDLOOP.
        CALL METHOD cl_abap_structdescr=>create
          EXPORTING
            p_components = lt_comp
            p_strict     = abap_false
          RECEIVING
            p_result     = lr_rtti_struc.
    CREATE DATA lr_data TYPE HANDLE lr_rtti_struc. "Now you have data of the new type
        ASSIGN lr_data->* TO <fs_data>.
        CREATE DATA lr_table LIKE STANDARD TABLE OF <fs_data>.
        ASSIGN lr_table->* TO <fs_table>.
    Regards,
    Sesh

  • WebLogic Server Times  OUT during DEBUG mode startup

    Hi,
    I am having a issue where my WebLogic Server 10.3 times out when I try to run it in debug mode in my workshop. Below is the error I get.
    "Timeout waiting for Oracle WebLogic Server v10.3 at localhost to start. Server did not start after 480s. "
    Do anyone have any idea why this is happening? I have reinstalled workshop but still same error.
    Thanks

    I have also seen this error when the debug mode does not start.
    starting weblogic with Java version:
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    ERROR: transport error 202: bind failed: Address already in use
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:690]
    Starting WLS with line:
    C:\bea103\JDK160~1\bin\java -client -Debug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n -Djava.compiler=NONE -Xms1200m -Xmx1200m -XX:CompileThreshold=8000 -XX:PermSize=192m -XX:MaxPermSize=192m -Xverify:none -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole... -Dplatform.home=C:\bea103\WLSERV~1.3 -Dwls.home=C:\bea103\WLSERV~1.3\server -Dweblogic.home=C:\bea103\WLSERV~1.3\server -Dweblogic.wsee.bind.suppressDeployErrorMessage=true -Dweblogic.wsee.skip.async.response=true -Dweblogic.management.discover=true -Dweblogic.security.SSL.ignoreHostnameVerify=false -Dwlw.iterativeDev=true -Dwlw.testConsole=true -Dwlw.logErrorsToConsole=true -DKS_URL=rmi://10.87.40.196:1188/KS -Dweblogic.ext.dirs=C:\bea103\patch_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_wls1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_wlp1030\profiles\default\sysext_manifest_classpath;C:\bea103\patch_cie670\profiles\default\sysext_manifest_classpath;C:\bea103\wlportal_10.3\p13n\lib\system;C:\bea103\wlportal_10.3\light-portal\lib\system;C:\bea103\wlportal_10.3\portal\lib\system;C:\bea103\wlportal_10.3\info-mgmt\lib\system;C:\bea103\wlportal_10.3\analytics\lib\system;C:\bea103\wlportal_10.3\apps\lib\system;C:\bea103\wlportal_10.3\info-mgmt\deprecated\lib\system;C:\bea103\wlportal_10.3\content-mgmt\lib\system -Dweblogic.alternateTypesDirectory=C:\bea103\wlportal_10.3\portal\lib\security -Dweblogic.Name=AdminServer -Djava.security.policy=C:\bea103\WLSERV~1.3\server\lib\weblogic.policy weblogic.Server
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    ERROR: transport error 202: bind failed: Address already in use
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [../../../src/share/back/debugInit.c:690]

  • Contact Center anywhere When running the TCPIPBUS in debug mode

    hi all,
    i am not able to make the outbound call,through cca interface is there any way how i can debug to make the outbound call.
    wen i keep th etcpipbus in debug mode "it's not showing any erors "
    http://www.onsip.com/onsip-articles/what-is-my-sip-address
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - ioctlsocket(FIONBIO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - setsockopt(SOL_SOCKET, SO_SNDTIMEO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Complete
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Accepting new connection
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Starting
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - ioctlsocket(FIONBIO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - setsockopt(SOL_SOCKET, SO_SNDTIMEO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Complete
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Accepting new connection
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Starting
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - ioctlsocket(FIONBIO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - setsockopt(SOL_SOCKET, SO_SNDTIMEO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Complete
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Accepting new connection
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Starting
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - ioctlsocket(FIONBIO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - setsockopt(SOL_SOCKET, SO_SNDTIMEO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Complete
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Accepting new connection
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Starting
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - ioctlsocket(FIONBIO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient - setsockopt(SOL_SOCKET, SO_SNDTIMEO) success
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::InsertClient() Complete
    14/04/2011 10:56:04.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:04.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:05.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.317 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:08.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.333 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:09.349 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.255 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.270 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:10.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    http://www.onsip.com/onsip-articles/what-is-my-sip-address14/04/2011 10:56:13.270 : 0 : 4036 : CTcpIpBus::Run() Activity
    detected
    14/04/2011 10:56:15.271 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:15.271 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:17.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:18.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:23.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:23.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:25.318 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:26.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.005 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.005 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.005 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.005 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:31.286 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:33.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:34.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:34.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:34.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:39.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:39.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:41.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:41.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:41.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:41.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:41.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:42.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    http://www.onsip.com/onsip-articles/what-is-my-sip-address14/04/2011 10:56:47.287 : 0 : 4036 : CTcpIpBus::Run() Activity
    detected
    14/04/2011 10:56:47.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    http://www.onsip.com/onsip-articles/what-is-my-sip-address14/04/2011 10:56:49.287 : 0 : 4036 : CTcpIpBus::Run() Activity
    detected
    14/04/2011 10:56:49.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.302 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.318 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.318 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:49.318 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:50.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:55.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    14/04/2011 10:56:55.287 : 0 : 4036 : CTcpIpBus::Run() Activity detected
    =========== [s: to stop application] ===========
    14/04/2011 10:56:55.740 : 0 : 4300 : SignalHandler(): Received signal = 2 ... Stopping the TCPIPBus Service
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 14, id = 32, group = 102,
    socket = 932]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 21, id = 7, group = 1, so
    cket = 948]--
    14/04/2011 10:56:55.787 : 0 : 264 : ExitThread: FileName[S:\development\version8.1.3.0\projects\TCPIPBUS\source\MainProg
    .cpp] LineNumber[394]
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 5, id = 10, group = 1, so
    cket = 964]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 16, id = 14, group = 1, s
    ocket = 980]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 16, id = 38, group = 102,
    socket = 996]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 2, id = 27, group = 17454
    5677, socket = 1012]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 19, id = 35, group = 102,
    socket = 1028]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 26, id = 39, group = 102,
    socket = 1048]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 23, id = 37, group = 102,
    socket = 1064]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 10, id = 1, group = 17454
    5677, socket = 1080]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 23, id = 13, group = 1, s
    ocket = 1096]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 97, id = 5, group = 17454
    5677, socket = 1112]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 26, id = 15, group = 1, s
    ocket = 1128]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 20, id = 12, group = 1, s
    ocket = 1144]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 11, id = 33, group = 102,
    socket = 1160]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 5, id = 34, group = 102,
    socket = 1176]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 21, id = 41, group = 102,
    socket = 1192]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 6, id = 3, group = 174545
    677, socket = 1224]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 14, id = 8, group = 1, so
    cket = 1240]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 20, id = 36, group = 102,
    socket = 1256]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 11, id = 9, group = 1, so
    cket = 1272]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 19, id = 11, group = 1, s
    ocket = 1288]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 101, id = 29, group = 174
    545677, socket = 1304]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 98, id = 1302698446, grou
    p = 174545677, socket = 1472]--
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.787 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 98, id = 1302698440, grou
    p = -174545677, socket = 1488]--
    14/04/2011 10:56:55.803 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.803 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Remove client on [type = 12, id = 4232, group = 17
    4545677, socket = 1504]--
    14/04/2011 10:56:55.803 : 0 : 4036 : CTcpIpBus::RemoveClientFromList: Client removed
    14/04/2011 10:56:55.803 : 0 : 4036 : CTcpIpBus::Run() Leaving...
    14/04/2011 10:56:55.803 : 0 : 4036 : Exit CommunicatorThread: FileName[S:\development\version8.1.3.0\projects\TCPIPBUS\s
    ource\MainProg.cpp] LineNumber[168]
    14/04/2011 10:56:55.803 : 0 : 5168 : BUS Exit
    http://www.onsip.com/onsip-articles/what-is-my-sip-addresshttp://www.onsip.com/onsip-articles/what-is-my-sip-address^Aht
    tp://www.onsip.com/onsip-articles/what-is-my-sip-address

    Voice stream debugging is done at the call center level.
    Set the calls centers to trace level 5.
    This will then output all messaging for the voice portion of CCA.

  • Sun Ray Connector proxy i on debug mode - VDI 3.1.1 -

    Hi,
    On each connection to a windows session with VDI I use the Sun Ray Connector Proxy, each user launch a daemon called uttcpd everytihnings is ok but this daemon is launch on debug mode so my /var/ad/messages is full of usesless debug message. I don't find any option or configuration file on the doc to change the daemon logging mode.
    Thanks per advance for your help,
    Sylvain.

    I have the same issue . . .
    1. Sun Ray 5 (Sun Ray 4.2)
    2. SRWC 2.2
    3. Solaris 10 u9 X86 on two x2200
    4. Terminal Server on Win2K3 R2 Standard x64 Edition SP2
    I have a handful of users and they all logon the same way, which is to enter username & password then I have the following lines at the end of the users' individual .dtprofile file . . .
    <begin snip>
    DTSOURCEPROFILE=true
    /opt/SUNWuttsc/bin/uttsc -b -m -O -u uname 192.168.100.29
    exit
    <end snip>
    Of course 'uname' is actually the user name followed by the Terminal Server IP address and as you can see I am using the '-O' option, but every morning all the users on a server have their Sun Ray sessions reset and I find this in the messages file . . .
    Mar 16 09:38:31 sunraya Sun Ray Connector proxy:[12941]: [ID 855542 user.error] Child closed socket prematurely, session shutdown
    . . . . Using cron, I reset the Sun Ray service twice a day on both servers at 7AM and 7PM . . .
    # cat /sunray-restart.script
    # This is to restart SunRay 5 service due to
    # what I think may be a memory leak that disconnects
    # the SunRay Windows Connector every day
    /opt/SUNWut/sbin/utrestart -c
    echo "#" >> /var/adm/messages
    date >> /var/adm/messages
    echo "#" >> /var/adm/messages
    echo " RESTARTING SUNRAY SERVICE " >> /var/adm/messages
    echo "#" >> /var/adm/messages
    echo "#" >> /var/adm/messages
    . . . But this does not appear to having an affect.
    I will be looking around the forums for any other bits of information about this. The "Known Issues" can probably be found in the Release Notes.

  • Portal Debug Mode :(

    Recently, I've turned ON the Debug mode on my server(port:50021).Since then i cudn't start my portal.In MMC, it remains 'starting application' forever!
    I tried to Turn OFF the Mode but when i do so, iam unable to save the settings after i hit the Save button in Visual Administrator.Status bar shows, applying changes..but it remains forever there too.
    Any ideas, on how to get back my portal up n running?
    Thanks a lot!

    Hey Rasmus,
    Somehow i was able to uncheck it but my MMC still shows Debug is ON..How to get back my portal ..Help:
    I right clicked the server in the MMC and hit the Developer Trace: iam pasting it here:
    trc file: "C:\usr\sap\J2E\JC00\work\dev_server0", trc level: 1, release: "640"
    node name   : ID5626050
    pid         : 2304
    system name : J2E
    system nr.  : 00
    started at  : Mon Dec 19 18:37:36 2005
    arguments   :
        arg[00] : C:\usr\sap\J2E\JC00/j2ee/os_libs/jlaunch.exe
        arg[01] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_epserver
        arg[02] : -DSAPINFO=J2E_00_server
        arg[03] : pf=C:\usr\sap\J2E\SYS\profile\J2E_JC00_epserver
    [Thr 6104] Mon Dec 19 18:37:36 2005
    [Thr 6104] *** ERROR => Invalid property value [box.number/J2EJC00epserver] [jstartxx.c   789]
    [Thr 6104] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties]
    -> ms host    : epserver
    -> ms port    : 3601
    -> OS libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : epserver
    -> ms port    : 3601
    -> os libs    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID5626000  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID5626050  : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID5626000            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    -> [01] ID5626050            : C:\usr\sap\J2E\JC00\j2ee\cluster\instance.properties
    [Thr 6104] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 6104] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 1260] JLaunchRequestFunc: Thread 1260 started as listener thread for np messages.
    [Thr 4904] WaitSyncSemThread: Thread 4904 started as semaphore monitor thread.
    [Thr 6104] Mon Dec 19 18:37:37 2005
    [Thr 6104] INFO: Invalid property value [JLaunchParameters/]
    [Thr 6104] JStartupIReadSection: debug mode is specified by program arguments
    [Thr 6104] [Node: server0] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID5626050]
    -> node name       : server0
    -> node type       : server
    -> java path       : C:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -verbose:gc -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar -Dsys.global.dir=C:/usr/sap/J2E/SYS/global -XX:NewSize=85m -XX:MaxNewSize=85m -XX:MaxPermSize=192m -XX:PermSize=192m -XX:DisableExplicitGC -XX:UseParNewGC -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> init heap size  : 512M
    -> root path       : C:\usr\sap\J2E\JC00\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.engine.boot.Start
    -> parameters      :
    -> debuggable      : yes
    -> debug mode      : yes
    -> debug port      : 50021
    -> shutdown timeout: 120000
    [Thr 6104] JLaunchISetDebugMode: set debug mode [yes]
    [Thr 4800] JLaunchIStartFunc: Thread 4800 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 262144 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: -Denv.class.path=C:\Program Files\Java\j2re1.4.2_08\lib\ext\QTJava.zip
    -> arg[  3]: -Djava.security.policy=./java.policy
    -> arg[  4]: -Djava.security.egd=file:/dev/urandom
    -> arg[  5]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[  6]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[  7]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[  8]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[  9]: -Djco.jarm=1
    -> arg[ 10]: -Dsun.io.useCanonCaches=false
    -> arg[ 11]: -Djava.awt.headless=true
    -> arg[ 12]: -verbose:gc
    -> arg[ 13]: -Drdbms.driverLocation=c:/sapdb/programs/runtime/jar/sapdbc.jar
    -> arg[ 14]: -Dsys.global.dir=C:/usr/sap/J2E/SYS/global
    -> arg[ 15]: -XX:NewSize=85m
    -> arg[ 16]: -XX:MaxNewSize=85m
    -> arg[ 17]: -XX:MaxPermSize=192m
    -> arg[ 18]: -XX:PermSize=192m
    -> arg[ 19]: -XX:+DisableExplicitGC
    -> arg[ 20]: -XX:+UseParNewGC
    -> arg[ 21]: -XX:+PrintGCDetails
    -> arg[ 22]: -XX:+PrintGCTimeStamps
    -> arg[ 23]: -XX:SurvivorRatio=2
    -> arg[ 24]: -XX:TargetSurvivorRatio=90
    -> arg[ 25]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 26]: -verbose:gc
    -> arg[ 27]: -Dsys.global.dir=C:\usr\sap\J2E\SYS\global
    -> arg[ 28]: -Dapplication.home=C:\usr\sap\J2E\JC00\j2ee\os_libs
    -> arg[ 29]: -Djava.class.path=C:\usr\sap\J2E\JC00\j2ee\os_libs\jstartup.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 30]: -Djava.library.path=C:\j2sdk1.4.2_08\jre\bin\server;C:\j2sdk1.4.2_08\jre\bin;C:\j2sdk1.4.2_08\bin;C:\usr\sap\J2E\JC00\j2ee\os_libs;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\usr\sap\J2E\SCS01\exe;C:\usr\sap\J2E\JC00\exe;C:\usr\sap\J2E\SYS\exe\run
    -> arg[ 31]: -Xdebug
    -> arg[ 32]: -Xnoagent
    -> arg[ 33]: -Djava.compiler=NONE
    -> arg[ 34]: -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=50021
    -> arg[ 35]: -Dmemory.manager=512M
    -> arg[ 36]: -Xmx512M
    -> arg[ 37]: -Xms512M
    -> arg[ 38]: -DLoadBalanceRestricted=no
    -> arg[ 39]: -Djstartup.mode=JCONTROL
    -> arg[ 40]: -Djstartup.ownProcessId=2304
    -> arg[ 41]: -Djstartup.ownHardwareId=S0415048418
    -> arg[ 42]: -Djstartup.whoami=server
    -> arg[ 43]: -Djstartup.debuggable=yes
    -> arg[ 44]: -DSAPINFO=J2E_00_server
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=00
    -> arg[ 47]: -DSAPSYSTEMNAME=J2E
    -> arg[ 48]: -DSAPMYNAME=epserver_J2E_00
    -> arg[ 49]: -DSAPDBHOST=
    -> arg[ 50]: -Dj2ee.dbhost=epserver
    [Thr 4800] Mon Dec 19 18:37:39 2005
    [Thr 4800] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 2440] Mon Dec 19 18:38:11 2005
    [Thr 2440] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2440] JLaunchISetClusterId: set cluster id 5626050
    [Thr 2440] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2440] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 3940] Mon Dec 19 18:38:33 2005
    [Thr 3940] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 3940] *** ERROR => JHVM_RegisterNatives: registration for class com.sap.security.core.server.vsi.service.jni.VirusScanInterface failed. [jhvmxx.c     338]
    [Thr 2440] Mon Dec 19 18:43:24 2005
    [Thr 2440] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]

  • Jcop card & debug mode

    I am trying to test java card applet in debug mode while it is installed on the real JCOP 31 card. I put few breakpoints in my java card applet code, but the execution flow never stops on these breakpoints. When I test my java card applet while it is installed inside the simulator everything is ok. I need to debug on the real JCOP 31 card. What I need to do?

    You cannot debug against a card. You need very specific (expensive?) hardware to be able to do that. You will not be able to step through the code on your card in JCOP tools. I am surprised your applet even ran in debug mode as it JCOP tools attempts to upload the DEBUG component of the CAP file that the card VM cannot usually understand.
    You need to add code to your card that will throw a known exception at a known point in the execution flow. When you see the status word for an exception you know you have reached a certain point (and exited). You can use this mechanism to return short/byte values as well.
    Cheers,
    Shane

  • Sprint BlackBerry 8830 - how do we get in to debug mode...?

    I have searched for two days everywhere and can not locate how we enter in to debug mode on the 8830.
    I need access to the Rx Ec/lo and the SID#, currently I can only get signal strength in the home screen by pressing the ALT+NMLL (changes the graphical signal indicator to the numerical one, i.e.  -80)
    Please, I could really use some help with this so we can diagnose the repeaters on our corporate campus.
    Thanks,
    J
    Solved!
    Go to Solution.

    Well, to answer my own question, I have now found the answer.
    Unfortunately, the 8830 and some of the other newer BlackBerrys do not make it easy to get this type of engineering information.
    You must:
    Have a login/password to  https://www.blackberry.com/EngineeringScreens/ (updated 5/30/2008)
    On the BlackBerry pres ALT+CAP+H and leave it on this screen.
    Once logged in to the link on #1, you will be asked to enter your PIN#, Uptime and Zip code of where your device is.
    You will then receive a unlock code that is specific to this information (if you exit out of this help screen on the blackberry, the uptime number will be different thus your code will be different.)
    Then enter the unlock code on the BlackBerry, holding the ALT key for numbers, capitals are not necissary.
    This will give you access to the Trace Mode Engineering App
    Select "Radio Engineering" screen
    Select "CDMA Engineering" screen
    Select "Operational Info"  (2nd line ec/io, 3rd line rss)
    Scroll down to "Neighbor Set Details" and get 1st line Active Pilot, 2nd  through 20th will give Neighbor sites with ec/io for each.
    *This code will only work for 30 days, then you will need to get a new code in the same way.
    I hope this helps everyone!
    Message Edited by mobilejray on 05-30-2008 02:12 PM

  • BDC OK Code disappear during debug mode

    Hi all,
    Currently, I have the following code when call transaction 'FV50':
      WA_OPT-DISMODE = 'A'.
      WA_OPT-UPDMODE = 'L'.
      WA_OPT-DEFSIZE = 'X'.
        CALL TRANSACTION 'FV50' USING IT_BDCDATA
                          OPTIONS FROM WA_OPT
    *                   MODE   ctumode
    *                   UPDATE cupdate
                         MESSAGES INTO IT_MESSTAB.
    Based on the above, I'm able to debug tcode FV50 with OK-CODE popup window, so that I can know the error messages displayed on the screen during debug.
    As the first debug mode of FV50 encountering error message, which I've forced to exit the debug and exit the program (since some G/L do not exist in respective company code), I have maintained the G/L and re-run the BDC in debug mode (Mode = 'A'). However, this time, the OK-CODE popup window didn't prompt up, where I couldn't debug the BDC screen using OK-CODE popup window.
    I have checked the settings in 'Customize Local Layout - ALT + F12' -> Options -> Expert tab -> Dialog Box for OK Code ticked, and I'm not certain why OK-CODE popup window just disappear on the second attempt of BDC debug.
    Appreciate if you guys have any idea on this.
    Thanks and regards,
    Patrick

    Hello,
    If the OK-CODE pop up isn't appearing while running in mode A, it means that the continuity is missing in the recording. You may have to re-record the transaction carefully or if you could analyse the missing link, you could directly add it.
    Also you could run the BDC in mode 'E' if you want to directly reach the point when any error occurs for better analysis.
    Vikranth

  • Error when starting Weblogic in debug mode

    Hi there
    Has anyone experienced any difficulties when starting weblogic in debug mode.
    More specifically, it cannot start correctly because it thinks that another instance
    is using the same port (definately not the case).
    Any clues/suggestions are greatly appreciated.
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unable to create
    a server socket for port: 8320. java.net.BindException: Address already in use
    Perhaps another process is using port 8320.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Notice> <WebLogicServer> <SSLListenThread
    listening on port 8321>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <The WebLogic
    Server is no longer listening for connections. You should probably restart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Server shutdown
    has been requested by system>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <The shutdown sequence
    has been initiated.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Info> <WebLogicServer> <Server shutdown is
    commencing NOW and is irreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unable to load
    performance pack, using Java I/O.
    java.lang.ThreadDeath
    at java.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)

    Thanks for the suggestion.
    Unfortunatley the port is definately free/available during startup.
    Stephane Kergozien <[email protected]> wrote:
    Maark,
    Before starting your server, please could you check that the port is
    not used by one
    other process. You can use the netstat command to do this.
    Regards
    Stephane
    Mark wrote:
    Hi there
    Has anyone experienced any difficulties when starting weblogic in debugmode.
    More specifically, it cannot start correctly because it thinks thatanother instance
    is using the same port (definately not the case).
    Any clues/suggestions are greatly appreciated.
    Error log follows:
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <Unableto create
    a server socket for port: 8320. java.net.BindException: Address alreadyin use
    Perhaps another process is using port 8320.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Notice> <WebLogicServer> <SSLListenThread
    listening on port 8321>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Emergency> <WebLogicServer> <TheWebLogic
    Server is no longer listening for connections. You should probablyrestart it.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <Servershutdown
    has been requested by system>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Alert> <WebLogicServer> <The shutdownsequence
    has been initiated.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Info> <WebLogicServer> <Servershutdown is
    commencing NOW and is irreversible.>
    <Mar 18, 2002 7:42:32 AM GMT+10:00> <Error> <Performance Pack> <Unableto load
    performance pack, using Java I/O.
    java.lang.ThreadDeath
    at java.lang.Thread.stop(Thread.java:581)
    at weblogic.t3.srvr.T3Srvr.die(T3Srvr.java:764)
    at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:507)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    at weblogic.Server.main(Server.java:35)--
    Regards,
    Stephane Kergozien
    BEA Support

Maybe you are looking for

  • Can anyone help with an error message when installing iTunes?

    Hi, I have been trying to upgrade my iTunes to 7.6, I have been unable to upgrade since version 7.3 it fails right at the end, well this time it didn't work either. I took the advice of the support pages and uninstalled iTunes but when I try to re-in

  • Outgoing payment file XML for Germany

    Hi, my customer wants to create a XML file for the outgoing payment file to the bank in Germany, when I look in the DMEE for the tree type PAYM, there is no format tree for Germany ? how can I configure this XML for Germany ? I have configured in the

  • How to Troubleshoot

    After updating to ios 7.1 iphone 5s turning off randomly when its under the 75% battery.How to resolve this issue?

  • Problem using earphones with iPhone 4S

    I cannot play music on my iPhone 4S through earphones - I only get static even though the iPhone speaker works fine. The same earphones work fine with my iPod and other stereo inputs and I've tried multiple earphones with the same result. This just s

  • Multiple submit button on a single form

    hi all, My current system have 1 submit button with single form. This submit button will call file_content.upload. htp.p('function on_submit() {'); htp.p('     ...the rest of my code here..'); htp.p('     document.forms[0].submit();'); htp.p('     re