URL opens new session

hi,
I wrote some test client for testing my server. I create URL and call URL.getContent(). This open new session. But I want use one session. How I can use request for same session?
<code>
for (int i=0; i<10; i++)
URL url = new URL(BASE_ADDRESS + "/adetail.jsf?fid=" + i);
URLConnection connection = url.openConnection();
// new session is created
Object content = connection.getContent();
</code>

As i stated, when i click links from 3rd party applications, such as skype; a youtube link or something similar. Firefox opens a new session however it does not visit the clicked url

Similar Messages

  • GUI opens new session extremely slow

    My gui opens new session very slowly, there isnt any other slow progress, just opening "new session".
    It occured suddenly, i cant see a reason.
    i reinstalled gui but the problem survived. Then i updated gui from 7.1 to 7.2, but again, nothing changed.
    any ideas ??

    No idea ??

  • Open new session on submitting a program thru FM call

    Hi expertz...need your help up here.
    Have a situation where we need to trigger another program(say zabc : PO History) when the user selects a line in the ALV list and then clicks a button (to call zabc), the new program should run in the background and open up or display the results in a New Session.
    Have tried to use FM 'SUBMIT_REPORT' with STARTING NEW TASK but it dosnt work.  Please see the call below.
    CALL FUNCTION 'SUBMIT_REPORT' "STARTING NEW TASK 'TEST1'
      EXPORTING
      RDIR                   = TRDIR
        report                 = 'ZPRPP_WORKORDERPURCHASING'
       RET_VIA_LEAVE          = ' '
      VARIANT                = ' '
       VARIPROG               = 'ZPRPP_WORKORDERPURCHASING'
       SKIP_SELSCREEN         = 'X'
      EXPRESSIONS            =
    IMPORTING
      VARIANT                =
    TABLES
       SELECTION_TABLE        = i_rspar
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    Any Idea!.
    Thanks
      Jaif

    Hi,
    copy your function module SUBMIT_REPORT to ZSUBMIT_REPORT and make it remote enabled.
    Now, where ever you want to call this FM, call as below,
    CALL FUNCTION 'ZSUBMIT_REPORT' STARTING NEW TASK 'T'
    EXPORTING
    * RDIR = TRDIR
    report = 'ZPRPP_WORKORDERPURCHASING'
    RET_VIA_LEAVE = ' '
    * VARIANT = ' '
    VARIPROG = 'ZPRPP_WORKORDERPURCHASING'
    SKIP_SELSCREEN = 'X'
    * EXPRESSIONS =
    * IMPORTING
    * VARIANT =
    TABLES
    SELECTION_TABLE = i_rspar
    EXCEPTIONS
    JUST_VIA_VARIANT = 1
    NO_SUBMIT_AUTH = 2
    OTHERS = 3.
    Check it out, it works for me.

  • Open new session in another language - Helpdesk tool!

    Hi,
    We have a lot of Chinese and Indian colleagues who ring up our German hotline with SAP problems. Normally we are signed on in German (which we understand!) but we would like to open a new session in English, without having to sign on again, so we can call transactions in English and explain what is going on to our friends abroad.
    I understand from a colleague that this is possible....unfortunately I don't know how to do it!
    Any ideas?
    Best regards and a nice weekend.
    Mike
    P.S. I can create a new session like this:
      CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
        DESTINATION 'NONE'
        EXPORTING
          tcode                 = 'SESSION_MANAGER'
        EXCEPTIONS
          communication_failure = 1
          system_failure        = 2.
    But even when I change my language (SY-LANGU/Language in SU01 etc.) my new session is in the "original" language.

    I am not sure whether its a feasible option for you or not as you have to create an RFC destination for English Login.
    You can create an RFC destination with your Login details and language as EN
    Then you can run the FM - 'ABAP4_CALL_TRANSACTION'  with destination as the One Created Above and Tcode as SESSION_MANAGER
    This will open a new login with EN language.
    You can also create RFC destination and just Click "Remote Logon" to open EN login session
    Regards,
    Aj
    Edited by: Abhishek Jolly on Aug 28, 2009 6:44 PM

  • Open New Sessions and attach

    Hello,
    I am trying to figure out how while attacehd to SAP from VBA excel to open a new session and continue the task in the new session. The end goal is to run 3 different transactions and have them up each in a seperate window. this is what I have so far but the transaction doesn't continue in the new session created it defaults back to the original window.
      Set SapGuiAuto = GetObject("SAPGUI")
      Set SAP = SapGuiAuto.GetScriptingEngine
    With SAP.Connections(0).Sessions(0)
        .createsession
    End With
      Set SapGuiAuto = GetObject("SAPGUI")
      Set SAP = SapGuiAuto.GetScriptingEngine
    SAP.Connections(0).Sessions(0).StartTransaction (Tcode)
    With SAP.Connections(0).Sessions(0)
            .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-MATNR").Text = Selection
            .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-WERKS").Text = "CHEM"
            .findById("wnd[0]/tbar[0]/btn[0]").press
            .findById("wnd[0]/tbar[1]/btn[34]").press
            .findById("wnd[0]/tbar[1]/btn[35]").press
            .findById("wnd[0]/tbar[1]/btn[36]").press
    I am attaching once...creating a new session and attaching again but it does not seem to happen in the new window created....any help please?

    Hi SLobo32, welcome to the forum !
    The question is simple but  I needed for the answer a lot of time. I have put my observations into a theory as folllows.
    By the command "create session", we opened a new SAP session. The system decides which is given session number. The task is then, how is the new session number.
    Session_number_max = 6                                  'the maximum number of possible SAP sessions
    Dim session_number_(Session_number_max)
    Set SapGuiAuto = GetObject("SAPGUI")
    Set SAP = SapGuiAuto.GetScriptingEngine
    Set connection = SAP.Children(0)
    Set session    = connection.Children(0)
    '------------------------------------------- new session connect -------------------------------------------------------------
    session_number_all = connection.children.count - 1
    for i = 1 to Session_number_max
         session_number_(i) = 0
    next 
    for session_number = 0 to session_number_all
         Set session    = connection.Children(int(session_number))
         session_number_(session.info.sessionnumber) = session.info.sessionnumber
    next
    if session_number_all < Session_number_max - 1 then
         session.createsession
         do
          wscript.sleep 500
          if connection.children.count - session_number_all >= 2 then exit do
         loop
         on error resume next
         Error_number = 1
         for session_number = 0 to session_number_all + 1
              err.clear
              Set session    = connection.Children(int(session_number))
              if err.number > 0 or err.number < 0 then exit for
             if session_number_(session.info.sessionnumber) = 0 then
                Error_number = 0
                exit for
             end if
             'session.findById("wnd[0]").iconify                          'So you can send another SAP session in the task bar.
         next
         on error goto 0
    else
    msgbox "New session is not possible."
    end if
    '------------------------------------------- new session connect -------------------------------------------------------------
    If Error_number = 0 then
    session.StartTransaction (Tcode)
    With session
    .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-MATNR").Text = Selection
    .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-WERKS").Text = "CHEM"
    .findById("wnd[0]/tbar[0]/btn[0]").press
    .findById("wnd[0]/tbar[1]/btn34").press
    .findById("wnd[0]/tbar[1]/btn35").press
    .findById("wnd[0]/tbar[1]/btn36").press
    Regards,
    ScriptMan
    Edited by: ScriptMan on May 11, 2011 3:08 PM

  • Can not open new Session

    Dear Expert,
    I have problem with my SAP system (ECC 6.00). When I want to create a new session, I got message
    No Connect to Database, Session Terminated
    I have checked my database and it's ok.....
    Regards,
    MAL

    Dear Expert,
    I use Oracle 10. My OS is Windows server 2003 R2 Enterprise Edition SP2. I can not create new session from SAP GUI.. I Use SAP GUI 7.10 Patch 7. (I get the message when i try to create a new session, even to export file i get this error)
    And below is my trans.log
    4 ETW000 r3trans version 6.14 (release 700 - 15.06.07 - 15:50:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 21.04.2008 - 11:30:08
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Mon Apr 21 11:30:08 2008                               0  0.000000
    4 ETW000  [dev trc     ,00000]  db_con_init called                                     0  0.000000
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                              0  0.000000
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                 0  0.000000
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0          5601  0.005601
    4 ETW000  [dev trc     ,00000]      using "G:\usr\sap\JMP\sys\exe\run\dboraslib.dll"
    4 ETW000                                                                              19  0.005620
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                         8  0.005628
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              14  0.005642
    4 ETW000  [dev trc     ,00000]  Version of 'dboraslib.dll' is "700.08", patchlevel (0.107)
    4 ETW000                                                                              87  0.005729
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library dboraslib.dll
    4 ETW000                                                                              14  0.005743
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000                                                                              23  0.005766
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              15  0.005781
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              18  0.005799
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         13  0.005812
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              13  0.005825
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              15  0.005840
    4 ETW000  [dev trc     ,00000]  Prepending G:\usr\sap\JMP\sys\exe\run to Path.       141  0.005981
    4 ETW000  [dev trc     ,00000]  Oracle Client Version: '10.2.0.1.0'                22225  0.028206
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                         20  0.028226
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.WE8DEC        2032  0.030258
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPJMR3's password          15  0.030273
    4 ETW000  [dev trc     ,00000]  Connecting as /@JMP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000                                                                              21  0.030294
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              17  0.030311
    4 ETW000  [dev trc     ,00000]    0 WE8DEC                                                    1   02655DF0   0037F9C4   0037F24C
    4 ETW000                                                                              16  0.030327
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0       16  0.030343
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      14  0.030357
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server JMP (con_hdl=0,svchp=0037F198,srvhp=0265E57C)
    4 ETW000                                                                             100  0.030457
    4 ETW000  [dev trc     ,00000]  Assigning server context 0265E57C to service context 0037F198
    4 ETW000                                                                           29566  0.060023
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        18  0.060041
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0037F198,srvhp=0265E57C,usrhp=026A9E78)
    4 ETW000                                                                              30  0.060071
    4 ETW000  [dev trc     ,00000]  Assigning user session 026A9E78 to service context 0037F198
    4 ETW000                                                                           31084  0.091155
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_MODULE (:A0, :A1); END;                                                                  
    4 ETW000                                                                              36  0.091191
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO (:A0); END;                                                                  
    4 ETW000                                                                              43  0.091234
    4 ETW000  [dev trc     ,00000]  Now '/@JMP' is connected (con_hdl 0, nls_hdl 0).
    4 ETW000                                                                             433  0.091667
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              28  0.091695
    4 ETW000  [dev trc     ,00000]         SELECT USERID, PASSWD FROM SAPUSER WHERE USERID IN (:A0, :A1)                                                            
    4 ETW000                                                                             243  0.091938
    4 ETW000  [dev trc     ,00000]  Got SAPJMR3's password from OPS$-user                473  0.092411
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   11  0.092422
    4 ETW000  [dev trc     ,00000]  Rolling back transaction ...                          15  0.092437
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=0037F198,usrhp=026A9E78)
    4 ETW000                                                                             121  0.092558
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     338  0.092896
    4 ETW000  [dev trc     ,00000]  Connecting as SAPJMR3/<pwd>@JMP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000                                                                              16  0.092912
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              15  0.092927
    4 ETW000  [dev trc     ,00000]    0 WE8DEC                                                    1   02655DF0   0037F9C4   0037F24C
    4 ETW000                                                                              16  0.092943
    4 ETW000  [dev trc     ,00000]  Assigning username to user session 026A9E78            9  0.092952
    4 ETW000  [dev trc     ,00000]  Assigning password to user session 026A9E78           11  0.092963
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0037F198,srvhp=0265E57C,usrhp=026A9E78)
    4 ETW000                                                                              14  0.092977
    4 ETW000  [dev trc     ,00000]  Assigning user session 026A9E78 to service context 0037F198
    4 ETW000                                                                           19690  0.112667
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_MODULE (:A0, :A1); END;                                                                  
    4 ETW000                                                                              35  0.112702
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO (:A0); END;                                                                  
    4 ETW000                                                                              25  0.112727
    4 ETW000  [dev trc     ,00000]  Now 'SAPJMR3/<pwd>@JMP' is connected (con_hdl 0, nls_hdl 0).
    4 ETW000                                                                             296  0.113023
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              19  0.113042
    4 ETW000  [dev trc     ,00000]         SELECT VALUE FROM V$NLS_PARAMETERS WHERE PARAMETER IN ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET') ORDER BY PARAM
    4 ETW000                                                                             213  0.113255
    4 ETW000  [dev trc     ,00000]         ETER                                                                               
    4 ETW000                                                                              15  0.113270
    4 ETW000  [dev trc     ,00000]  Database NLS settings: AMERICAN_AMERICA.WE8DEC       245  0.113515
    4 ETW000  [dev trc     ,00000]         SELECT UPPER(INSTANCE_NAME),HOST_NAME,VERSION,TO_CHAR(STARTUP_TIME,'MON DD, YYYY, HH24:MI:SS') FROM V$INSTANCE           
    4 ETW000                                                                              24  0.113539
    4 ETW000  [dev trc     ,00000]  DB instance JMP is running on JMSAP04 with ORACLE version 10.2.0.2.0 since MAR 31, 2008, 07:51:48
    4 ETW000                                                                             284  0.113823
    4 ETW000  [dev trc     ,00000]         SELECT SUBSTR(NAME,1,3), TO_CHAR(CREATED,'YYYYMMDDHHMMSS') FROM V$DATABASE                                               
    4 ETW000                                                                              19  0.113842
    4 ETW000  [dev trc     ,00000]  Connection 0 opened (DBSL handle 0)                 1431  0.115273
    4 ETW000  [dev trc     ,00000]         SELECT VERSION FROM SVERS                                                                               
    4 ETW000                                                                            3789  0.119062
    4 ETW000  [dev trc     ,00000]         SELECT COMPCNT FROM "DDNTT"                                                                               
    4 ETW000                                                                             369  0.119431
    4 ETW000  [dev trc     ,00000]  NTAB: Structure of NTAB on DB is VERS_B              199  0.119630
    4 ETW000  [dev trc     ,00000]  NTAB: standalone processing                           27  0.119657
    4 ETW000  [dev trc     ,00000]  NTAB: read profile                                     9  0.119666
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/entrycount 1000.                       8  0.119674
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/ftabsize 500.                          8  0.119682
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/irbdsize 100.                          7  0.119689
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/sntabsize 100.                         8  0.119697
    4 ETW000  [dev trc     ,00000]  NTAB: compute_hash_card: 2003.                        12  0.119709
    4 ETW000  [dev trc     ,00000]  NTAB: maxcnt 1000.                                    18  0.119727
    4 ETW000  [dev trc     ,00000]  NTAB: hfactor 2003.                                    7  0.119734
    4 ETW000  [dev trc     ,00000]  NTAB: mem_protocol_size 104                            7  0.119741
    4 ETW000  [dev trc     ,00000]  NTAB: hdr_backpack_offset 0                            8  0.119749
    4 ETW000  [dev trc     ,00000]  NTAB: hdr_backpack_size 0                             11  0.119760
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: header_size 44.                            8  0.119768
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: item_size 36.                              8  0.119776
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: item_cnt 1000.                             8  0.119784
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: unit_size 4                                8  0.119792
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: unit_cnt 128000.                           8  0.119800
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: data_size 512000.                          8  0.119808
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: header_size 44.                            7  0.119815
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: item_size 36.                              8  0.119823
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: item_cnt 250.                              8  0.119831
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: unit_size 8                                7  0.119838
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: unit_cnt 12800.                            8  0.119846
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: data_size 102400.                          8  0.119854
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: header_size 44.                            8  0.119862
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: item_size 36.                              7  0.119869
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: item_cnt 250.                              8  0.119877
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: unit_size 4                                7  0.119884
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: unit_cnt 25600.                            8  0.119892
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: data_size 102400.                          8  0.119900
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: header_size 148.                           8  0.119908
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: item_size 24.                              8  0.119916
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: item_cnt 1000.                             7  0.119923
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: unit_size 152                              8  0.119931
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: unit_cnt 1000.                             8  0.119939
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: data_size 152000.                          8  0.119947
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: hh_p 266e5e8, hh_len 44                  592  0.120539
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: aa_p 3a836a0, aa_len 8012                 10  0.120549
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: ia_p 3a855f8, ia_len 36000                 9  0.120558
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: dat_p 3a90008, dat_len 512000              8  0.120566
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: hh_p 267ef10, hh_len 44                    9  0.120575
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: aa_p 26aa1b8, aa_len 8012                  8  0.120583
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: ia_p 3b0d010, ia_len 9000                  8  0.120591
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: dat_p 3b0f340, dat_len 102400              8  0.120599
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: hh_p 266e978, hh_len 44                    9  0.120608
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: aa_p 3b28348, aa_len 8012                  8  0.120616
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: ia_p 3b2a2a0, ia_len 9000                  8  0.120624
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: dat_p 3b2c5d0, dat_len 102400              8  0.120632
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: hh_p 2698f60, hh_len 148                   8  0.120640
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: aa_p 3b455d8, aa_len 8012                  9  0.120649
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: ia_p 3b47530, ia_len 24000                 8  0.120657
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: dat_p 3b4d2f8, dat_len 152000              8  0.120665
    4 ETW000  [dev trc     ,00000]  NTAB: ntab_mem_protocol 2698f60, ntab_mp_p 2698f60, ntab_proc_id 0
    4 ETW000                                                                              84  0.120749
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: hh_p 266e5e8, ha_list 3a836a0, hi_list 3a855f8, buffer 3a90008
    4 ETW000                                                                              41  0.120790
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: hh_p 267ef10, ha_list 26aa1b8, hi_list 3b0d010, buffer 3b0f340
    4 ETW000                                                                              14  0.120804
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: hh_p 266e978, ha_list 3b28348, hi_list 3b2a2a0, buffer 3b2c5d0
    4 ETW000                                                                              13  0.120817
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: hh_p 2698fc8, ha_list 3b455d8, hi_list 3b47530, buffer 3b4d2f8
    4 ETW000                                                                              13  0.120830
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 0
    4 ETW000                                                                              19  0.120849
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 1
    4 ETW000                                                                              22  0.120871
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 2
    4 ETW000                                                                              22  0.120893
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 3
    4 ETW000                                                                              20  0.120913
    4 ETW000  [dev trc     ,00000]         SELECT TABNAME, BLOCKNR, FIELDSLG, FIELDS FROM "DDNTF" WHERE TABNAME = :A0 ORDER BY TABNAME, BLOCKNR                     
    4 ETW000                                                                              57  0.120970
    4 ETW000  [twdydbacc.c ,00565]  i:0                                                  421  0.121391
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       PGMID                         10  0.121401
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              7  0.121408
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      0                              6  0.121414
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   4                              7  0.121421
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:4                             20  0.121441
    4 ETW000  [twdydbacc.c ,00565]  i:1                                                    8  0.121449
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJECT                         7  0.121456
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              7  0.121463
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      4                              6  0.121469
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   4                              7  0.121476
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:4                              6  0.121482
    4 ETW000  [twdydbacc.c ,00565]  i:2                                                    7  0.121489
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJ_NAME                       7  0.121496
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              6  0.121502
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      8                              7  0.121509
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   40                             6  0.121515
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:40                             7  0.121522
    4 ETW000  [twdydbacc.c ,00565]  i:3                                                    7  0.121529
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       KORRNUM                        7  0.121536
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              9  0.121545
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      48                             7  0.121552
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.121558
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             6  0.121564
    4 ETW000  [twdydbacc.c ,00565]  i:4                                                    8  0.121572
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       SRCSYSTEM                      7  0.121579
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121585
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      58                             7  0.121592
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.121598
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             6  0.121604
    4 ETW000  [twdydbacc.c ,00565]  i:5                                                    7  0.121611
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       AUTHOR                         7  0.121618
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121624
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      68                             7  0.121631
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   12                             6  0.121637
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:12                             7  0.121644
    4 ETW000  [twdydbacc.c ,00565]  i:6                                                    7  0.121651
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       SRCDEP                         7  0.121658
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121664
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      80                             6  0.121670
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.121677
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121683
    4 ETW000  [twdydbacc.c ,00565]  i:7                                                    7  0.121690
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       DEVCLASS                       7  0.121697
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121703
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      81                             7  0.121710
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   30                             6  0.121716
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:30                             7  0.121723
    4 ETW000  [twdydbacc.c ,00565]  i:8                                                    7  0.121730
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       GENFLAG                        7  0.121737
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121743
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      111                            6  0.121749
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.121756
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121762
    4 ETW000  [twdydbacc.c ,00565]  i:9                                                    7  0.121769
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       EDTFLAG                        7  0.121776
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121782
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      112                            7  0.121789
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121795
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              7  0.121802
    4 ETW000  [twdydbacc.c ,00565]  i:10                                                   7  0.121809
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       CPROJECT                       9  0.121818
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121824
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      113                            7  0.121831
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   8                              6  0.121837
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:8                              6  0.121843
    4 ETW000  [twdydbacc.c ,00565]  i:11                                                   8  0.121851
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       MASTERLANG                     6  0.121857
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              7  0.121864
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      121                            7  0.121871
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121877
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121883
    4 ETW000  [twdydbacc.c ,00565]  i:12                                                   8  0.121891
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       VERSID                         7  0.121898
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121904
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      122                            6  0.121910
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   20                             7  0.121917
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:20                             6  0.121923
    4 ETW000  [twdydbacc.c ,00565]  i:13                                                   8  0.121931
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       PAKNOCHECK                     7  0.121938
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121944
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      142                            7  0.121951
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121957
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121963
    4 ETW000  [twdydbacc.c ,00565]  i:14                                                   8  0.121971
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJSTABLTY                     7  0.121978
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121984
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      143                            7  0.121991
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121997
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.122003
    4 ETW000  [twdydbacc.c ,00565]  i:15                                                   8  0.122011
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       COMPONENT                      7  0.122018
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122024
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      144                            7  0.122031
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   30                             6  0.122037
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:30                             6  0.122043
    4 ETW000  [twdydbacc.c ,00565]  i:16                                                   8  0.122051
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       CRELEASE                       7  0.122058
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122064
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      174                            7  0.122071
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.122077
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             7  0.122084
    4 ETW000  [twdydbacc.c ,00565]  i:17                                                   9  0.122093
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       DELFLAG                        7  0.122100
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122106
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      184                            7  0.122113
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.122119
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              7  0.122126
    4 ETW000  [twdydbacc.c ,00565]  i:18                                                   8  0.122134
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       TRANSLTTXT                     6  0.122140
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              7  0.122147
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      185                            6  0.122153
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.122160
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.122166
    4 ETW000  [dev trc     ,00000]         SELECT VERSION, UUID, CRTIMESTMP, ABTIMESTMP, DYTIMESTMP, FLDCNT, TABLENGTH, KEYCNT, KEYLENGTH, CLIENTPOS, TABTYPE, TABFOR
    4 ETW000                                                                              31  0.122197
    4 ETW000  [dev trc     ,00000]         M, REFNAME, HFLAG, BUFSTATE, BUFPARM, ALIGN, POINTERLG, UNICODELG, COMPCNT, LEAFCNT FROM "DDNTT" WHERE TABNAME = :A0     
    4 ETW000                                                                              15  0.122212
    4 ETW000  [twdydbacc.c ,00713]  buffer:'g CRIPTION = (SDU = 32768) (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = jmsap04) (PORT = 1527))) (CONNECT_DATA = (SID = JMP) (GLOBAL_NAME = JMP.WORLD)))'
    4 ETW000                                                                             321  0.122533
    4 ETW000  [twdydbacc.c ,00718]  i:0                                                    7  0.122540
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:0                                    6  0.122546
    4 ETW000  [twdydbacc.c ,00718]  i:1                                                    6  0.122552
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:4                                    7  0.122559
    4 ETW000  [twdydbacc.c ,00718]  i:2                                                    6  0.122565
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:8                                    6  0.122571
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_READ_ONLY', tname = 'TADIR' ) {twdbcall.c:648}
    4 ETW000                                                                              19  0.122590
    4 ETW000  [dev trc     ,00000]         SELECT * FROM "TADIR" WHERE "PGMID" = :A0 AND "OBJECT" = :A1 AND "OBJ_NAME" = :A2                                        
    4 ETW000                                                                              91  0.122681
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_READ_ONLY', retcode = 0 )
    4 ETW000                                                                             281  0.122962
    4 ETW000 Connected to DBMS = ORACLE --- dbs_ora_tnsname = 'JMP' --- SYSTEM = 'JMP'.
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_INSERT', tname = 'PATCHHIST' ) {saprel.c:1251}
    4 ETW000                                                                             179  0.123141
    4 ETW000  [dev trc     ,00000]         INSERT INTO "PATCHHIST" VALUES( :A0 , :A1 , :A2 , :A3 , :A4 , :A5 , :A6 , :A7 )                                          
    4 ETW000                                                                             309  0.123450
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_INSERT', retcode = 0 )        364  0.123814
    4 ETW000  [dev trc     ,00000]  dsql_open (con_da=(0,R/3),stmt="SELECT EXECUTABLE,SAPRELEASE,H ...",#binds=0,name=UNKNOWN,#input=0)
    4 ETW000                                                                              75  0.123889
    4 ETW000  [dev trc     ,00000]         SELECT EXECUTABLE,SAPRELEASE,HOSTNAME,PLATFORM,DBVENDOR,TIMESTAMP,PATCHNO,DBSLPATCHN FROM PATCHHIST WHERE EXECUTABLE = 'R3
    4 ETW000                                                                              36  0.123925
    4 ETW000  [dev trc     ,00000]         trans' AND TIMESTAMP = (SELECT MAX(TIMESTAMP) FROM PATCHHIST WHERE EXECUTABLE = 'R3trans' AND SAPRELEASE = '700' AND HOSTN
    4 ETW000                                                                              15  0.123940
    4 ETW000  [dev trc     ,00000]         AME = 'JMSAP04' AND PLATFORM = 'NT' AND DBVENDOR = 'ORA')                                                                
    4 ETW000                                                                              15  0.123955
    4 ETW000  [dev trc     ,00000]  dsql_fetch (con_da=(0,R/3),cu_id=0,#output=8)         17  0.123972
    4 ETW000  [dev trc     ,00000]  dsql_close (con_da=(0,R/3),cu_id=0)                  265  0.124237
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_DELETE', tname = 'PATCHHIST' ) {saprel.c:1359}
    4 ETW000                                                                              17  0.124254
    4 ETW000  [dev trc     ,00000]         DELETE FROM "PATCHHIST" WHERE "EXECUTABLE" = :A0 AND "SAPRELEASE" = :A1 AND "HOSTNAME" = :A2 AND "PLATFORM" = :A3 AND "DBV
    4 ETW000                                                                              31  0.124285
    4 ETW000  [dev trc     ,00000]         ENDOR" = :A4 AND "TIMESTAMP" = :A5                                                                               
    4 ETW000                                                                              15  0.124300
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_DELETE', retcode = 0 )        256  0.124556
    4 ETW690 COMMIT "0" "0"
    4 ETW000  [dev trc     ,00000]  db_con_commit (con_da={R/3,0,0},th_commit=1,tx=1,hold_cursor=0)
    4 ETW000                                                                              41  0.124597
    4 ETW000  trace to file pointer closed
    4 ETW000  trace at level 1 opened for a given file pointer
    4 ETW000
    4 ETW000 ================== STEP 1 =====================
    4 ETW000 date&time        : 21.04.2008 - 11:30:08
    4 ETW000 function         : CONNECT
    4 ETW000 buffersync       : YES
    4 ETW000 clients          : default
    4 ETW000 l.s.m.           : VECTOR
    4 ETW000 commit           : 100000
    4 ETW000 table cache      : dynamic
    4 ETW000
    4 ETW000  [dev trc     ,00000]  Disconnecting from ALL connections:                  113  0.000113
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   15  0.000128
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=0037F198,usrhp=026A9E78)
    4 ETW000                                                                             314  0.000442
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0037F198,srvhp=0265E57C)
    4 ETW000                                                                             405  0.000847
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     361  0.001208
    4 ETW000  [dev trc     ,00000]  Disconnected from connection 0                        14  0.001222
    4 ETW000  [dev trc     ,00000]  statistics db_con_commit (com_total=1, com_tx=1)
    4 ETW000                                                                              13  0.001235
    4 ETW000  [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)
    4 ETW000                                                                              11  0.001246
    4 ETW000 Disconnected from database.
    4 ETW000 End of Transport (0000).
    4 ETW000 date&time: 21.04.2008 - 11:30:08
    Regards,
    MAL
    MAL

  • New Session getting created(!)

              Hi All,
              I am facing a wierd behavior. I have an application with a
              login page(jsp). User submits his authentication details,
              is authenticated in a servlet, and some of his information is
              put in the session. Later he gets "redirected" to another
              jsp(just like any other app).
              This is working fine most of the times. But randomly it is
              so happening that the jsp being redirected to does not get the
              values put in the session.
              Some more debugging showed that from login jsp to servlet, same
              session continued till the very last step(just before
              redirection). Just after
              response.sendRedirect(response.encodeRedirectURL(url));
              a new session gets created(!!). Any pointers?
              Please note I am testing all this out in a browser which is
              accepting cookies.
              

    Urgent!!
              We have the same problem on WLS5.1.
              Any suggestions would be fine
              Regards
              Osman
              "Bijay Kumar" <[email protected]> schrieb im Newsbeitrag
              news:3d0ed20f$[email protected]..
              >
              > Hi All,
              > I am facing a wierd behavior. I have an application with a
              > login page(jsp). User submits his authentication details,
              > is authenticated in a servlet, and some of his information is
              > put in the session. Later he gets "redirected" to another
              > jsp(just like any other app).
              >
              > This is working fine most of the times. But randomly it is
              > so happening that the jsp being redirected to does not get the
              > values put in the session.
              >
              > Some more debugging showed that from login jsp to servlet, same
              > session continued till the very last step(just before
              > redirection). Just after
              > response.sendRedirect(response.encodeRedirectURL(url));
              > a new session gets created(!!). Any pointers?
              >
              > Please note I am testing all this out in a browser which is
              > accepting cookies.
              >
              

  • How do I create new sessions in Firefox with no add ons ? Need not be logged in user sessions .

    Hi, From our integrated desktop application,We launch web applications .On using firefox to navigate to the webpage which is depending upon the context of the user's page opened,new session has to be created for each user.However I could not find the support parameters in about:config. FF version being used is FF 3.6 .No possibility to include external addons to support this feature.Is there a way to create multiple new sessions ?

    What do you mean by "multiple new sessions"?
    Firefox 31 is the current release version, Firefox 3.6 is over 2 years beyond being supported by Mozilla.

  • Can I retrieve my last session after accidently chosing start new session over restore session?

    I love the feature of restoring last session. But I accidentally chose the wrong choice (open new session) and lost all my previous session. How can I get back to my previous session?

    If you use the Time Machine then you can restore a previous version of the file sessionstore.js in the Firefox Profile Folder
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/sessionstore.js
    *http://kb.mozillazine.org/Session_Restore

  • Create new session for each window opening

    From a jsp page i open a page called student.jsp by clicking on students admision no.Therefore lots of pages can be opend in new windows with relevent student details.
    but when i click on the link i called a servlet, get relevent details and redirect to student.jsp. The problem is ,all opened windows have same session id and there are session conflicts.
    How can i create new sessions for each page thru the servlet or is there any other alternatives

    I actually was working on a problem that was similar to this, and the problem is with how each web-browser works with sessions...
    Each browser window (Except in one case with IE) will use the same session in each window.
    However, you might be able to use URL-Rewritting to manage your sessions and get around using cookies for for session tracking. I personally haven't tried this, but I'm betting that it will work.
    Best of Luck,
    Nate

  • Button on page opens new window, session times out in old window

    Hi,
    I've created a custom page and added a button through personalizations in Oracle that opens the new custom page in a new window. When this happens, though, the original window throws the following error when a user attempts to use any functionality in that page:
    Error: Cannot Display Page
    You cannot complete this task because you accessed this page using the browser's navigation buttons (the browser Back button, for example).
    More specifically, the new button has been added to a LOV page in Oracle. Navigation would be: Create timecards page, click on Task LOV button (this opens new window for Task LOV), new button is on this Task LOV page. The new button then opens the custom page, and when the user returns to the Task LOV page to select a task they receive the error.
    How do I prevent this error when the new custom page opens from the button?
    Thanks in advance for your help,
    Suzanne

    I have an update to this issue:
    I found that adding the value &retainAM=Y to the button URL for my custom page resolves the issue of the time-out in the Task LOV page. However, when I make the task selection in the LOV page and return to the main create timecard page, I find that the session has timed out on that page.
    Any suggestions?
    Thanks,
    Suzanne

  • Firefox now opens new tabs in new Firefox sessions. This is new behaviour and is a nuisance. How do I stop it?

    This may be a Windows problem or it may be a Firefox issue.
    I think it started when I installed updated Firefox to version 35.
    Firefox 35 is running in Windows 8.1 on a desktop.
    When I click a link in my Firefox browser, I've set FF to open new windows in a new tab instead.
    It doesn't.
    It opens a new window altogether that sits at the far end of my Windows task bar. If I have several tabs running, the taskbar displays the main program icon, which is pinned to the taskbar, and way over to the right it displays an icon that shows another session of Firefox. If there are three new sessions running, that icon on the right shows layers.
    To close Firefox, I have to select each session and close it individually.
    In the past, the Windows taskbar icon showed just one Firefox icon, although it would show layers if there was more than one tab open. Now it's showing the two as described above.
    This is a nuisance. Is it caused by Firefox 35, and if so, how do I stop it?

    Thanks, Fred. The settings checked under "Tabs" are Open new windows in a new tab instead, and When I open...switch to it immediately.
    Maybe I'm describing the problem incorrectly. Firefox is 'pinned' to my taskbar. When clicked, a second FF icon appears to the right and it is not pinned. It appears to be an entirely new session. New tabs open in it.
    My home page is a web page with links with the target=_blank attribute. When I click one a new session starts with two tabs in it, my home page and the page for the url I linked to. The attached image shows four FF sessions running, three of them with two tabs, resulting from clicking 3 links on my home page. Instead of one "unlit" icon and one "lit" icon with seven tabs shared between four sessions, there should be one icon, lit, with one session with four tabs.
    I think this started happening when FF upgraded to version 35, but it may have been when Windows 8.1 upgraded itself, if that happened recently. I've only noticed this behaviour for a few days; until then FF stayed in one session with multiple tabs, and only the pinned program icon showing in the task bar.
    This ONLY occurs with Firefox. My other browsers, IE 11, Opera 26 and Safari, just use the one pinned icon.

  • Accidentally hit "Start New Session"... URLs in a crash report or something?

    Ok, so I knew it would happen sooner or later, and just kept hoping it would be later...
    I hit "Start New Session" instead of restore today... Looked around for previous solutions, and found no sessionstore.bak in my folder...
    FF had crashed previously in the day, and I had hoped that would mean all the reloaded windows would be in today's history(some were a few months old), but that doesn't seem to be the case. (and I guess it doesn't help that my system is backdated(cause of 7100))
    So I am wondering if there happens to be any sort of crash report archive that may happen to have the urls that were open in some way? Long shot I know but I figured I'd at least ask.

    Hello.
    Although possibly not related to your problem, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    If you haven't closed Firefox since then, you can access ''about:sessionrestore'' to restore the lost session. If you closed Firefox in the mean time, I believe there's no way to get your session back. [http://support.mozilla.com/en-US/kb/Session+Restore Session Restore] will always get your last session back, and solely the last session.
    P.S.: I'm not certain ''about:sessionrestore'' is available in old versions of Firefox. Versions of Firefox before 3.5 are no longer supported, in any case, as I said.

  • Open new browser window  and session

    My application A is launched from other application B.
    User first login to B, B has a link to A, when user clicks on link to A I open a new browser with the url for A , A creates a new session etc.surprisingly when user logs out in A session in B also expires and vice versa , please suggest me how to have different session when one browser opens a new Browser for a new application.

    The problem here is: browser is sharing session with new window. And moreover different browsers behave differently creating/sharing sessions in case of new tab, new window etc.
    Try URL rewriting instead of cookie for session management. Not sure whether this solves the problem.
    Please have a look here .
    Thanks,
    Mrityunjoy

  • Function Module to open a new session displaying a method of a class

    Hello All,
    I have a method A of class B.
    Now, in my current session, I have a button. When the user clicks on this button, what I expect is that a new session be opened and in the new session method A of class B be displayed.
    This is similar to the debugger, wherein, in the debugging mode, we can bring up the context menu in the Source Code (Edit Control) tool, and then select "Go To Source Code".
    So basically, I am looking for a Function Module which does the same.
    I came across Function Module CC_CALL_TRANSACTION_NEW_TASK, however, this will only create a new session.
    I could specify the transaction as SE24, but it then opens a new session with this transaction. That is it.
    My objective is to display the method of a class in a new session.
    Is there any Function Module in this case?
    Regards,
    Mithun
    Edited by: Mithun Kamath on Aug 9, 2011 5:35 PM

    Hello Sandra,
    Thank you very much. That was exactly what I was looking for.
    However, instead of calling EDITOR_PROGRAM directly, what I instea did was the following:
    1) Created a RFC enabled Function module.
    2) Inside this function module, I wrote the following code:
      SUBMIT tpda_editor_start AND RETURN
       WITH prgm  = is_alert_det-program_name
       WITH incl = is_alert_det-include_name
       WITH dynp = space
       WITH line = is_alert_det-line_no.
    The parameters above were similar to the one proposed by you.
    Borrowed the above from the class CL_TPDA_SERVICES_TOOLS, method NAVIGATE_TO_SOURCE.
    The above is basically called in the debugger, when we use the context menu in the editor tool and invoke the "Goto Source Code" functionality. This eventually calls the EDITOR_PROGRAM FM.
    The reason why I did this is because when I was testing the FM, it did not allow me to specify the include as CL_TEST=====CM01. I do not know why, probably I was doing it wrong. But it gave me a message saying that the object does not exist in table TADIR.
    Anyway, I did the above steps and it worked exactly as I wanted it to.
    I would like to thank you again.
    Best Regards,
    Mithun
    P.S. Forgot to add, I called the above RFC enabled FM as a new task.
    Edited by: Mithun Kamath on Aug 10, 2011 4:19 PM

Maybe you are looking for