Session Loss in WebFlow Application

Greetings,
I'm responsible for load testing an application that uses webflows. I'm using
SilkPerformer to generate scripts and monitor the system. The problems we are
seeing is the webflow application when it submits HTTPS requests will lose session
during the test.
We've been experiencing this problem for almost 3 months now. We thought we had
the problem resolved but it's back.
One of the workarounds is to restart the web servers. This seems to remedy the
problem but only temporarily. Has anyone experienced this type of problem with
session loss and restarting the web severs as a workaround?
All of us here are at wits end...
Thanks,

Your login logic is not threadsafe. If you used a servlet or filter, check if you did't declare any instance variables which are going to be shared. Using the 'synchronized' modifier is pointless in this case. You should write the servlet the threadsafe way yourself.

Similar Messages

  • Sso session timeout per partner application

    Hello,
    I was just wondering if it is possible to configure SSO session timeouts per partner application? I'm looking to log out users of a particular application after 15 minutes, but don't want this change to affect any of my other SSO enabled applications. Is this possible?
    Thanks,

    Hi,
    I do not think so, you can not specify specail parameter for one application in SSO.
    Why because SSO is one component (within your Infra) through which you logon different apps.
    Another solution may be it will expensive is that you 'll need to use different infra for this specific application.
    Regards,
    Hamdy

  • How to track session in Webdynpro Java application

    Hi All,
    How to get the session reference of any Webdynpro Java Application . My purpose is that thr is one WD application is getting launched , now if suppose user didn't perform any action on it and session for that application got expired . After the session got expired i have to update the table with the status . So to track that i need the session reference of WD application which i m looking for .
    How could i get the same . Kindly help me on this .
    Thanks & Regards,
    Mitul.

    Hi ,
    HttpSession session = request.getSession(false); //get the current session, if there is no session yet, return null
    if (session == null) //forward to first page
    else //do normal work
    Then u can update ur session right ,
    Regards ,
    Venkat

  • Question: Will non committed persistence data loss if my application which is using Kodo/JDO crashes???

    Hi,
    I am very new to JDO and Kodo and I am still learning. I have a user
    specification that requires no data loss when the application crashes. If I
    am developing my application using Kodo for data access layer, when my
    application crashes just because and needs to restart, what happen to all
    the persistence data that have not committed to database??
    Vivian

    I am very new to JDO and Kodo and I am still learning. I have a user
    specification that requires no data loss when the application crashes.
    If I am developing my application using Kodo for data access layer, when
    my application crashes just because and needs to restart, what happen to
    all the persistence data that have not committed to database??If an app crashes, all current transactions will be aborted. There is a
    difference between data loss and aborting the current transaction. Data
    loss implies losing some persistent data -- data that resides in the
    database. That won't happen with Kodo.
    You will, however, lose any changes that have not been committed to the
    database yet. This is a good thing. You absolutely DO NOT want an
    unfinished transaction to be recorded, because that could violate the
    integrity of your data. Consider a transaction that decrements from one
    bank account and increments another to implement a funds transfer. You
    certainly wouldn't want to record the decrement unless you are absolutely
    sure the increment would be recorded too!

  • Unable to fetch session variables in my application page code behind

    hi,
    my env:  1  WFE  server which hosts the  central admin and my web appln,  1 sql server box  
    i am having a custom web part[ listviewbyquery web part]  which populates the site collection/ sub site's document library contents . also it reads some query string values and pushes these  values into  session variables.
    and i am having another application page in this application which reads this session variables and  perform some operation in a custom sql db. But i am unable to read these session variables on page load of this  application page.
    am unable to debug also. so, would like to know is there any way i can see, what values  are getting passed to this page and verify the session variables are accessed correctly.
    or
    is this  by design, that its not possible to read session variables in the application page ?
    if i am not having a visual studio env. to debug, how to test these  session variable  existence / to find the root cause of this issue.
    note: already configured session state in IIS , http  modules section. am using Page.Session["myvariable1"].tostring() to fetch the  session variables.
    help is appreciated!

    i have found out myself. i have put  page.response.write(mysessionvariables) in the code and deployed and tested in my env. and i was able to find out the reason and i have fixed it with proper validation check.

  • Clear session state for related application/page

    I have an application item I want to clear and I am not sure what is
    the correct session state process type to select
    I am reading about the different state process but I am not sure.
    I thought it was
    Clear Cache for Items (ITEM,ITEM,ITEM) but this item has to be on a page.
    What would be the appropriate one to select to clear an application item
    Clear Cache For Applications (removes all session state for listed applications)
    Clear Cache For Current Application (removes all session state for current application)
    Clear Cache For Current Session (removes all state for current session)
    Clear Cache for Items (ITEM,ITEM,ITEM)
    Clear Cache for all Items on Pages (PageID,PageID,PageID)
    Reset Preferences (remove all preferences for current user)
    Set Preference to value of Item (PreferenceName:ITEM)
    Set Preference to value of Item if item is not null (PreferenceName:ITEM)
    Howard

    How do I name the application item.. I tried the following.
    itemName
    :itemName
    application:itemName
    and neither of these 2 work. Did I miss anything.
    Howard
    Edited by: csphard on Oct 29, 2009 10:11 AM
    Edited by: csphard on Oct 29, 2009 10:13 AM

  • Can we hav call transaction and session method for an application

    can we hav call transaction and session method for an application ?if yes how?

    Hi ,
    You can.  If Call Transaction fails, a batch input session can be created.
    Check this example-
    Call the transaction. Messages from Call Transaction are stored in the
    internal table messtab 
      CALL TRANSACTION 'LT01' USING bdc_tab MODE 'N' UPDATE 'S'
          MESSAGES INTO messtab.
      IF sy-subrc = 0.                                                 
    Call transaction successfull,  get the number of the Transfer Order that
    was created                                                        
        LOOP AT messtab.                                               
          IF messtab-dynumb = '0104' AND messtab-msgnr = '016'.        
            w_transportorderno = messtab-msgv1.                        
          ENDIF.                                                       
        ENDLOOP.
      ELSE.
    Call transaction failed, create a batch input session instead.
        PERFORM open_group.                        
        PERFORM bdc_insert USING 'LT01'.           
        PERFORM close_group.                       
    ENDIF.
    Regards,
    Sookshma

  • One Session in Forms5.0 Applications

    Hello,
    I want to restrict user that user can not open two session for
    the Forms Application.
    For the same I am using Forms 5.0 And I have written the
    following code in WHEN-NEW-FORM-INSTANCE Trigger but it is not
    working properly.
    So How can I restrict the user for the same.
    DECLARE
    ln_response BOOLEAN;
    BEGIN
    ln_response :=
    Win_Api_Session.One_Session('HELLO','ONE_SES','MODULE',FALSE,WIN_
    API.D2K_WINDOW_CLASS,TRUE);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT_FORM;
    END;
    Thanks for any help.
    null

    Pradeep Rajput (guest) wrote:
    : Hello,
    : I want to restrict user that user can not open two session
    for
    : the Forms Application.
    : For the same I am using Forms 5.0 And I have written the
    : following code in WHEN-NEW-FORM-INSTANCE Trigger but it is not
    : working properly.
    : So How can I restrict the user for the same.
    : DECLARE
    : ln_response BOOLEAN;
    : BEGIN
    : ln_response :=
    : Win_Api_Session.One_Session
    ('HELLO','ONE_SES','MODULE',FALSE,WIN_
    : API.D2K_WINDOW_CLASS,TRUE);
    : EXCEPTION
    : WHEN NO_DATA_FOUND THEN
    : EXIT_FORM;
    : END;
    : Thanks for any help.
    Hi!
    Try the following:
    1. Delete all copies of D2KWUTIL.PLL and D2KWUT32.DLL.
    2. Copy the above files from Developer/2000 Version 2.1
    CD\EXTRAS\D2KWUTIL.
    3. Write the following code in WHEN-NEW-FORM-INSTANCE Trigger:
    Set_Window_Property(FORMS_MDI_WINDOW, TITLE, 'HELLO');
    IF win_api_session.one_session('HELLO',
    'F50RUN32.EXE',
    'WINDOW',
    TRUE,
    WIN_API.WINCLASS_DEVELOPER_2000_V2,
    FALSE) THEN
    EXIT_FORM;
    END IF;
    That's all. It works well and I tested in both Windows 95 and
    Windows NT Workstation.
    Good Luck!
    null

  • How to remove the Sessions used in the application

    Hai Techies,,,
    i am using many number of sessions in my application, for example i am using 5 sessions in reports module
    my application is a web based application
    if can't remove the sessions it contains the huge amount of data , my application is going into mess, and the application performance will be decreased..
    Can anybody tell the solution for this Problem
    How to remove the Sessions used in the application
    Hoping a reply
    Thanks & Regards
    Krishna mangamuri

    Hai Gita,
    i am not able to do the session invalidate method bcoz, i am mainatainting the session from login along with the current userid who is login into the system and putting some of the data in session....
    thats session is to be valid upto when i click on logoff link
    except that i have to remove the sessions in my application
    while navigating from one jsp to another i have to remove the sessions, bit somes times that sessions may be used somewhere
    Can u Understand My problem
    session remove method may also helpful to me but some times it will casue some prob to me
    Is there any other Way to remove the sessions in the Application ????
    Thanks & Regards
    Krishna Mangamuri

  • NUMBER OF SESSIONS CONNECTED TO AN APPLICATION SERVER

    how i can find out number of database sessions connected to an application server
    thanks and regards
    Ajith

    Current Sessions is the current total number of open sessions for each application. Yes, you can use JMX or WLST within a script.
    The WebAppComponentRuntimeMBean mbean of your application provides this information through OpenSessionsCurrentCount attribute.
    For instance, in WLST enter:
    wls:/my_domain/serverRuntime/ApplicationRuntimes/my_application/ComponentRuntimes/my_app> cmo.getOpenSessionsCurrentCount()
    For JMX I suggest to you see [http://download.oracle.com/docs/cd/E13222_01/wls/docs91/wlsmbeanref/core/index.html]
    Edited by: Betino on 22/10/2009 11:26 AM

  • How can I pass the session attributes to other applications?

    I need to pass a value across the web application. Is it possible?
    I use Forward to redirect the page in JPF. Before redirection, I set some attribute/value in session. In new application, I found the atttribute value is null. Is there a way to pass the value between web applications.
    Thanks in advance.

    Hi,
    Two different Webapps doesn't share the same session , they have two different. So as far as i known you have to use something like a db to pass variables or another common way. Maybe when you redirect you can store an atribute to the HttpRequest and get it in your other app.Something very simple is to fix the url like that
    http://www.mydomain.com/manager.jsp?passingAttribute=passingValue
    Hope that helps
    BR

  • Using TableLocking API in Stateless Session Bean through WD application

    Hi All,
    We have develpoed a webDynpro application which involved Jav Dictionary Table.
    We have given UI for Creation, Updation and Deletion of the table.For database connection we have used Stateless Session Bean.
    we have the requirement of Locking the Table record when one user is either editing or deleting the record of Table from UI, so any other user cannot update or delete the same record.
    To implement the above functionality, we have used TableLocking API with lifetime as userSession in the Stateless Session Bean to acquire a Lock for particular record.
    With lifetime as usersession the record should get unLocked automatically, if the session of application is expired and record is not unLocked Explicitly.
    We are calling the Session Bean from Webdynpro application to acquire a lock, When the Dynpro application expires the locked record should get unlocked automatically as the lifetime is defined as usersession,But the record remains unlocked only even after expiration of the application sessionand deadlock occurs for that record.
    So if anyone can suggest the solution for the above problem.
    Or some other method to Lock Particular Record from application.
    Thanks in advance.
    Regards,
    Shruti.

    HI,
    Can you resolve this issue?
    I have the same scenary, could you give me some tips?
    Thanks,
    Freddy F

  • Grab session ID from external application?

    We are trying to create a type of single-sign-on approach using both an external program (created in a development language called Magic) and APEX. We've been able to utilize the APEX authentication process so that both now can utilize the same sign-on, but what we're now trying to do is to establish a session ID so we can seamlessly launch an APEX session from this other application.
    I know there are ways to do single-sign-on. Can anyone suggest a solution?

    Hi,
    Never done this kind.
    But could APEX_CUSTOM_AUTH functions and procedures help ?
    http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_auth.htm#CEGHIDHC
    And this also
    http://www.oracle.com/technology/oramag/oracle/09-may/o39security.html
    Br,Jari

  • Session time out in Application server -reg

    hi friends
    We have Oracle Application server 10g in cluster mode in our organization. We are using Oracle Forms and Reports . But there is one issue. If the user keeps the screen idle for more than 20 min the system gets timed out and requires sdba authentication . We actually increased the time out value. But we could not able to remove sdba authentication. Our aim is to remove authentication after session time out. It is ok even if the application completely closes and comes out of the screen. But the user must not be asked to enter sdba credentials after system is idle for the time out period.
    M.C.Jayanarayan

    Hi,
    you posted this question to the JDeveloper forum, where it may be better posted to the application server forum or the Forms forum
    Frank

  • How to configure a session timeout for DynPro applications?

    Hello,
    1. Where can I configure the session timeout of the DynPro applications?
    2. Can I configure a session timeout per application and how do I do that?

    Hello Heidi,
    I am not familiar with this property:
    1. Where can I configure it?
    2. Does it apply to every application at the portal?
    3. What if I would like to configure just one application?
    By the way, I have noticed that the DynPro application has an expirationTime property. The documentation says this:
    Specifies the lifetime in seconds of a Web application on the server before the Web application is terminated by the server. The value of the DefaultExpirationTime parameter of the system configuration is used as the default value.
    My question is if someone tried to use this property?
    Message was edited by: Roy Cohen

Maybe you are looking for

  • Viewing Report created in Crystal Report Designer

    <p>Hi,</p><p>I'm new to CR4E and tries to work with existing report. I saw many error while trying this, please excuse me to the long email below that I explain all the errors I saw......</p><p>I have some reports that were created in Crystal Report

  • XML import only creates one record at a time

    Hi All, I have an XML import map that automatically imports data into main product table. It's working fine when the XML file has only one main record. When it has more than one record, the import manager and import server can only import the last re

  • I get an error message -1202 when trying to connect

    Need help

  • Saving same png file gives me image with 10x smaller size

    Hi. I would appriciate if someone explained me what I'm doing wrong. I have a png image, of 256x128 size. It has 8bits per pixel for color. Now this image's size is 97kB. I open it in photoshop, I save it as different png file, and then... this image

  • OfficeJet Pro 8500A won't print test page

    This printer suddenly won't print, even a test page.   When I try to print from another program I get an error message, document gets stuck in print que.  Wireless is recognized.  Scan Doctor found printer, still it won't print.  Suggestions?