Multiple user sessions

Does anyone know how to handle multiple sessions for one user? E.g. a user
          opens two browsers on the same machine. How do you know which user
          (browser) made which request?
          TIA, Mark
          

Jeff,
          With Ctrl-N in IE (for example) you get two browsers that are
          "indistinguishable" (same non-persistent cookies, for example).
          Cameron Purdy
          [email protected]
          http://www.tangosol.com
          WebLogic Consulting Available
          "Jeff Martin" <[email protected]> wrote in message
          news:[email protected]..
          > Cameron Purdy wrote:
          > >
          > > Mark Lorenz wrote:
          > > > Does anyone know how to handle multiple sessions for
          > > > one user? E.g. a user opens two browsers on the same
          > > > machine. How do you know which user (browser) made
          > > > which request?
          > >
          > > URL encoding handles that. Non-persistent cookies handle
          > > that assuming the browsers are in separate processes.
          > > (That means you COULD have a problem with Ctrl-N in IE
          > > ... is that what you are asking about?)
          >
          > The connection to the web server handles the "which request was from
          > whom" problem. Since Netscape and IE will have their own [different]
          > connections to your webserver, they are easy to tell apart -- and with
          > each connection goes it's own session. It is not part of the URL
          > encoding (unless that browser is cookieless thus your doing url
          > rewriting of course).
          >
          > Jeff
          

Similar Messages

  • Multiple user sessions for ADF application

    Hi All,
    We have a ADF application with 3-4 pages starting with a login screen.
    Assume we have two users, user1 and user2. In same system but different browser windows, when both users are logging in, only user2 's session is active. Though user1 logged in first and is able to perform transactions, the moment user2 logs in, user1's session is being over-written by user2 (user1's window now displays user2's information). I have observed the URL of user1 window which now changes to user2's URL (_adf.ctrl-state parameter of user2 is displayed in user1 browser)
    How do we overcome this?? We have a requirement to be able to open multiple user sessions.
    We are using JDeveloper 11.1.2.3.0 and browsers being used are IE 8, IE9 and chrome.
    Thanks,
    Deepti

    Hi,
    Continuation to my above question
    I am using these two statements in my code..
    ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
    HttpSession httpSession = (HttpSession)ectx.getSession(true);
    On any event in Window1, I gues it is getting the context and session of window2(this being the latest)..
    Shouldnt it return the context and session of the current window instead of the latest window???
    This problem is well explained here
    internet explorer 8 - How to avoid session sharing provided by IE8 programmatically in Java EE application? - Stack Over…
    I want to know.. what is the best way to handle this in ADF... We are using managed beans with request scope and using HttpSession to store few values like user Id.

  • How to trace for multiple user sessions?

    Hello -
    I have a username from the app that has 7 connections to the database. What is the easiest way that I can run the 10046 trace event across all 7 sessions, and also name the trace files so they can be recognized in user_dump?
    Thanks in advance!

    Check what sid and serial# has session:
    select sid, serial# from sys.v_$session where ...
    start tracing session with:
    execute dbms_system.set_sql_trace_in_session(sid, serial#, true);
    stop tracing with
    execute dbms_system.set_sql_trace_in_session(sid, serial#, false);
    Look into udump directory for trace files:
    The default name for a trace files is INSTANCE_PID_ora_TRACEID.trc where:
    INSTANCE is the name of the Oracle instance,
    PID is the operating system process ID (V$PROCESS.OSPID); and
    TRACEID is a character string of your choosing.

  • Multiple obSSOCookies in a single user session

    Hi ,
    I have written a web service to update my users in ADAM directory. The web method creates IDXML requests and sends it to the Identity Server.
    My web method looks like this
    [WebMethod]
    public void UpdateUserProfile(string userGuid, UserProfile profile, string obSsoCookie) where userGUID is the CN attribute.
    I do call this webmethod from a web application to update multiple users. Since my web method supports only one update at a time, I have to call this method in a loop and pass on the user details. I wont be able to add a bulk update web method due to other constraints.
    Now every time, when I call this web method from my client ASP.NET application (Updating users from my client application) , I also pass on a new obSSOCookie, in the same session.
    The client method signature which I use to call the web method is
    utils.UpdateUserProfile(foundProfile[iProfile].Guid, profile, CommonFunctions.GetOIMSSOCookie());
    The GetOIMSSOCookie method generates a new cookie on every call by posting my account credentials to webgate.
    However, the update fails sporadically after updating few users. The error logs which I see is (logs have been masked)
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers > GetUserAttributeValues >|OIM.CommonSearchHelper|cn Attribute value: CN=2bb8f5f6-49b0-4d86-a58a-bad9a087b25c,OU=XXX,OU=Applications,OU=subscriber,DC=ext,DC=adam
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers >|OIM.CommonSearchHelper|User DN: CN=2bb8f5f6-49b0-4d86-a58a-bad9a087b25c,OU=XXX,OU=Applications,OU=subscriber,DC=ext,DC=adam
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser >|OIM.CommonSearchHelper|userDN: CN=2bb8f5f6-49b0-4d86-a58a-bad9a087b25c,OU=XXX,OU=Applications,OU=subscriber,DC=ext,DC=adam
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateGenericAttribute|OIM.ModifyUserHelper| Generic Attribute: Setting;oper:REPLACE_ALL
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateGenericAttribute|OIM.ModifyUserHelper|Attribute Values : OptOut;
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateGenericAttribute|OIM.ModifyUserHelper| Generic Attribute: setting;oper:REPLACE_ALL
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateGenericAttribute|OIM.ModifyUserHelper|Attribute Values : ;
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateRequestParams|OIM.ModifyUserHelper|Creating Request params for dn:CN=2bb8f5f6-49b0-4d86-a58a-bad9a087b25c,OU=XXX,OU=Applications,OU=subscriber,DC=ext,DC=adam
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateRequest|OIM.ModifyUserHelper|Creating Modify User Request:
    2011-03-09 04:59:24,458|756|DEBUG|53275e69|XXX|UpdateUserProfile > CreateCookie|OIM.Utility|Creating Cookie - ObSSOCookie : vh1YQIlJEn4m4PA6uWYQlB1VJp%2Bl1OL7Got2aL1GTwBj1dCF4r4gdoiwXaCbwKmqqX0KWQGp5n0KzaLhDsKqscGNT%2FsxLdSdmoiBMIqR2tBMxIGO4EIIO8FZ%2FnOUVIrElqjyZMK7FpKJ7cGOvezFBLbl1WqcOxiDz2M2lYgoRFJX94uhaB2av3FoFxMQU0wgNHOJJsT4oAaUW2B6DxHg9nzITZvanmzYrDG7xK8p6TNTilhD9hygvcUKyriaAnIYJRxgpSmdgppznPD27KoQvLmjw2jjIHxujaWXPiMko0QgFpIwMK02SrgOWLlB3n6334n4f86TJqi%2Bj78hJ3HRpW%2FjNfAYBbr%2FN1D0r6%2BZt3U%3D; domain=.xxx.com;isSecure: False
    2011-03-09 04:59:24,646|756|DEBUG|53275e69|XXX|UpdateUserProfile >|OIM.OimUtils|Status: 0
    2011-03-09 04:59:24,646|756|DEBUG|53275e69|XXX|UpdateUserProfile >|OIM.OimUtils|Updated User Profile
    2011-03-09 04:59:24,646|756|DEBUG|(null)|XXX|(null)|OIM.Global|Request Completed for /oimapi/20070306/oimapi.asmx
    2011-03-09 04:59:24,739|756|DEBUG|(null)|XXX|(null)|OIM.Global|Begin Request - 9046bf89
    2011-03-09 04:59:24,739|756|DEBUG|9046bf89|XXX|(null)|OIM.Global|Beginning Request for /OIMAPI/20070306/OimAPI.asmx
    2011-03-09 04:59:24,739|756|DEBUG|9046bf89|XXX|GetUserProfileForToken >|OIM.OimUtils|Starting GetUserProfileForToken
    2011-03-09 04:59:24,739|756|DEBUG|9046bf89|XXX|GetUserProfileForToken >|OIM.OimUtils|Parameters: obssocookie: ngzOfBfpHTxumbRfYHbaHXMR%2B3oDuxKmIUzS4hqFtGfGQ8QyLSQ7n%2BiLLbEBJMLXJlq5mF1u1ngR8z8Xs9n5T5JBZyK7eVhlitAELEU2SrPxlCkenz6WdbtM%2FsbpJKTZ3kQ25%2Fy3lZ8gVHXLeMzjNQitlXdmpnA%2BTPRu%2FwPAIojDmojbdHWiO3eJI61lvffrsMFANz5ZtVRd4AKmbFFWXI4DytAIdKwSDfDZ1h6LsVAsYaZ4vXM1%2B7qJ7qw80%2F7PO8CKer%2F4wbTNAzgSHH%2BNA7Zd2TgzzYjPAyiPDIbQb4viB%2BAdohKW6IScot9ekWzCtm0gzA1H4fJTSGmXEDuLrux7wxDsNpeL4HfvMq5AvTM%3D
    2011-03-09 04:59:24,755|756|DEBUG|9046bf89|XXX|GetUserProfileForToken > GetUserAttributeValues CreateRequestParams|OIM.ViewHelper|Creating View Request params for dn:
    2011-03-09 04:59:24,755|756|DEBUG|9046bf89|XXX|GetUserProfileForToken > GetUserAttributeValues CreateRequest|OIM.ViewHelper|Creating View Request
    2011-03-09 04:59:24,755|756|DEBUG|9046bf89|XXX|GetUserProfileForToken > GetUserAttributeValues CreateCookie|OIM.Utility|Creating Cookie - ObSSOCookie : ngzOfBfpHTxumbRfYHbaHXMR%2B3oDuxKmIUzS4hqFtGfGQ8QyLSQ7n%2BiLLbEBJMLXJlq5mF1u1ngR8z8Xs9n5T5JBZyK7eVhlitAELEU2SrPxlCkenz6WdbtM%2FsbpJKTZ3kQ25%2Fy3lZ8gVHXLeMzjNQitlXdmpnA%2BTPRu%2FwPAIojDmojbdHWiO3eJI61lvffrsMFANz5ZtVRd4AKmbFFWXI4DytAIdKwSDfDZ1h6LsVAsYaZ4vXM1%2B7qJ7qw80%2F7PO8CKer%2F4wbTNAzgSHH%2BNA7Zd2TgzzYjPAyiPDIbQb4viB%2BAdohKW6IScot9ekWzCtm0gzA1H4fJTSGmXEDuLrux7wxDsNpeL4HfvMq5AvTM%3D; domain=.xxx.com;isSecure: False
    2011-03-09 04:59:24,896|1356|DEBUG|(null)|(null)|(null)|OIM.Global|Begin Request - 29bf4f98
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|(null)|OIM.Global|Beginning Request for /oimapi/20070306/oimapi.asmx
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile >|OIM.OimUtils|Starting UpdateUserProfile
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile >|OIM.OimUtils|Parameters: userGuid: 36ce5679-5f52-4b6c-a2f5-a9d48162abac; obSsoCookie: loggedoutcontinue
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > CreateSearchParamCondition|OIM.CommonSearchHelper|Creating Search Param Conditions - attrName:cn;attrValue:36ce5679-5f52-4b6c-a2f5-a9d48162abac;oper:OEM
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser >|OIM.CommonSearchHelper|Search Condition 1: cn OEM 36ce5679-5f52-4b6c-a2f5-a9d48162abac
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers > CreateSearchParams|OIM.CommonSearchHelper|Creating Search Params with 1 condition(s)
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers > CreateRequestParams|OIM.CommonSearchHelper|Creating Request params - number of fields: 1; tabId: Employees
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers > CreateRequest|OIM.CommonSearchHelper|Creating Request:
    2011-03-09 04:59:24,896|1356|DEBUG|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers > CreateCookie|OIM.Utility|Creating Cookie - ObSSOCookie : loggedoutcontinue; domain=.xxx.com;isSecure: False
    2011-03-09 04:59:24,896|1356|ERROR|29bf4f98|XXX|UpdateUserProfile > SearchUser SearchActiveUser > SearchActiveUser > SearchActiveUsers >|OIM.CommonSearchHelper|2 - Error Searching User: cn OEM 36ce5679-5f52-4b6c-a2f5-a9d48162abac; - The request failed with an empty response.(51-99-01)
    System.Net.WebException: The request failed with an empty response.
    at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
    at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
    at OIM.common_search.OblixIDXML_common_search_Service.OblixIDXML_common_search(authentication authentication, request request) in c:\Projects\OIM\Source\OIMAPI\Web References\common_search\Reference.cs:line 79
    at OIM.CommonSearchHelper.GetSearchActiveUsersResponse(String[] attributeNames, SearchParamsCondition[] conditions, Int32 numOfRecords, String obSsoCookie) in c:\Projects\OIM\Source\OIMAPI\CommonSearchHelper.cs:line 493
    2011-03-09 04:59:24,896|1356|DEBUG|(null)|XXX|(null)|OIM.Global|Request Completed for /oimapi/20070306/oimapi.asmx
    The update fails because in between, the obssocookie sets to LoggedOut Continue.
    Should I be using a single obSSOCookie for the entire update operation, by getting a cookie and storing it in a temp string variable? If not, then what could be reason the cookie getting timed-out?
    Any suggestions?
    Thank you,
    Vibhuti

    Hi Sudhakar,
    try some thing like this.Here I have enclosed the code snippet.
         String query = USER_ID + "=" + user.getUserId()+ "," + people;
                        // add the user to the LDAP directory
    //                    ctx.createSubcontext( query, attrNew );
                        Attribute att1 = new BasicAttribute(MEMBEROF);
                        String roleName=user.getUserRoleList().get(0);
                        String role1 = COMMONNAME + "="+roleName+"," + group;
                        att1.add(role1);
                        attrNew.put(att1);
                        DirContext dirContext =ctx.createSubcontext( query, attrNew );
                        for (int i = 1; i < user.getUserRoleList().size(); i++) {
                             Attributes att2 = new BasicAttributes();
                             String roleNameStr=user.getUserRoleList().get(i);
                             log.debug("roleNameStr--->"+roleNameStr);
                             String role2 = COMMONNAME + "="+roleNameStr+"," + group;
                             log.debug("role2-->"+role2);
                             att2.put(MEMBEROF,role2);
                             dirContext.modifyAttributes("", DirContext.ADD_ATTRIBUTE, att2);
                        }

  • SESSION VARIABLES : HOW TO TEST FOR MULTIPLE USERS

    I have a username session variable set up on a localhost testing envirnoment.
    This works fine for one user, but when I open another occurence of the browser (or just another tab) to test for multiple users the system overwrites the session variable with the last username input.
    So the question is:
             Why doesn't dreamweaver hold an instance of the session variable for each browser session? and if not what are your suggestions?
    Thanks
    Adam.

    Thanks for that.
    After scouring the internet I found the only way of running 2 instances of firefox  without them sharing the session variables is to create 2 new firefox profiles in windows + set the MOZ_NO_REMOTE environment variable.
    Internet explorer is much easier as it has a 'new session' option in the file menu, but seems to have more trouble displaying tables correctly.
    Hope this helps anyone with a similar problem.

  • Simulate Multiple users connecting to same session

    Hi All,
    Is there anyway we can simulate multiple users connecting to the same session in oracle using PL/SQL.
    Thanks,
    MK.

    As per the architects in our company, lots of users connect to the same session and access the database.Exactly what does this mean? A single session can service one user at a time. I would wager that the architects are envisioning (or describing) a connection pooling setup where the middle tier server maintains a relatively small number of connections to the database (each with its own session most likely) and users operate by getting a connection from the pool, making a request, and returning the connection back to the pool. At any given point, only one user can be using a connection.
    If that's the case, you would simulate this by simply executing code in a loop in PL/SQL.
    Of course, if this is the case, each connection in the connection pool would its own copy of the collection and so each connection would get its own list of order numbers. You'd have to develop some way to ensure that each session populated its collection with a different set of order numbers.
    Justin

  • Multiple users to share same session

    Hi guys. I am writing a Flash game, where the state of the game and the moves will be stored in the session. Several users will be sharing the same game session though.
    Flash will send variables containing the move made by a particular player to a Servlet, that will be on a different web server. That Servlet will then return to Flash, when requested an XML response containing the state of the game for the next player.
    Lets say there are always 3 players playing per game. How do I share this same session among those 3 users?
    Question 1:
    Is there a way to store a Vector of sessions in a Servlet?
    Question 2:
    Supposed the above answer is yes, I could send back and forth an id for the session between Flash and the Servlet. Is it possible to associate a session stored with a particular id? And how would I retrieve that session based on a given id?

    Do you want to run multiple games concurrently? If so, the application object won't work, because all the user data will then be available to all users.
    I would recommend that you continue to use the session-per-user paradigm. Instead of storing all the game data in session, store it in a global lookup structure (a Singleton or static variable of the servlet, probably a Hashtable). Key the game data for each user off of a unique id (potentially the session id?). In each user session, store the id's of the other users they are playing against.
    So, when you are responding to a request from one user, you can quickly get the id's for the other players, use those to lookup the necessary game data for those users, and then use it to create your response.
    At that point, all you need is some way to expire the data from your storage structure. If you store a "last access" timestamp along with the game data, you can use a thread to expire old data in much the same way that a session would be expired.

  • How to disable Refresh,Reload in browser and user should not allow to multiple browser sessions ?

    Dear All,
    How to disable Refresh,Reload in browser and end user should not allow to multiple browser sessions in portal.Where we need to configure the settings or any code in masthead or any other component. My server version is 7.4 - SP5 .Please help us.
    Thanks for advance,
    BR,
    Durga Rao.

    Dear all,
    i am able to logoff the click refresh button on keyboard.I am using this code to log off the user into the portal.
    document.onkeydown = function(e)
      var key;
      if (window.event) key = event.keyCode
      else
      var unicode = e.keyCode ? e.keyCode : e.charCode
      key = unicode
      switch (key)
      { //event.keyCode
      case 116: //F5 button
        LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 82: //R button
      if (event.ctrlKey)
    LSAPI.sessionPlugin.logoff();
      event.returnValue = false;
      key = 0; //event.keyCode = 0;
      return false;
      case 91: // ctrl + R Button
    LSAPI.sessionPlugin.logoff();
      event.returnValue= false;
      key=0;
      return false;
    Thanks.
    But i am unable to control the multiple windows opening the browser.So any one can tell me the how to block the new window and new tab/duplicate tab option.
    BR,
    Durga Rao.

  • Problem sharing remote tooltalk session by multiple users

    I need advice on how to create a remote tooltalk session and have it shared by multiple users. Currently, I have a few remote ttsessions, but I'm running into with TTauthority to let others share those same sessions. Is there any way to have a common tooltalk session which would support a dynamic number of users?

    I'm running into issues with Tooltalk's security
    mechanism ttauth. I need help to setup up a main
    session (one MIT Magic Cookie) which would be shared
    by mulitple users. The problems are occuring with new
    MIT Magic Cookies being generated per new user login.
    I have tried the extract and merge approach to get
    other users' information, but this has proved to be
    an inefficient way for applications to communicate
    with each other. Please help!

  • Logging off multiple login sessions of the same user

    Hi,
    When I login to solaris through a telnet session and type "who", I see that many of my previous terminal login sessions from the same ip address are still open.
    Although only one telnet login session is established curretly, I see multiple previous logins.
    How can I kill all the previous login sessions I made from the same IP address as the current one?
    Thanks,
    Rommel Sharma.

    Try this:
    kill -1 `ps -fu username | awk '{ print $2 }'`
    This will kill all the user sessions, including the one you ran it from. It's a bit extreme, but simple. :-)
    HTH,
    Roger S.

  • Multi User session mgmt, Multiple Session objects

    I am creating a multiple user web application where in each user information is handled separately. when user log in a session is created and all info of this user is stored in this session object. But when another user logs in information of first user is displayed for the second user and overwriting the first user info in session object.
    Question : Can each user have a different session object so that session info is not overwritten.
    thanks
    Kaushik
    [email protected]

    If I understand it correctly, eventhough the two users are in different sessions, their session information is being mixed up...correct.
    Are you using JSP? If you are using JSP, and you declared the variables in the <%! variable x = new String("Test"); %>, then that variable is considered static. Therefore, when another user logs in and you replace the variable, you are changing the static variables value...Remember, JSP is basically compiled into a java class, and you are creating a static variable by doing what I think you are doing.
    Do you think you can provide more information as to what you are doing?

  • How to use the same POWL query for multiple users

    Hello,
    I have defined a POWL query which executes properly. But if I map the same POWL query to 2 portal users and the 2 portal users try to access the same page simultaneously then it gives an error message to one of the users that
    "Query 'ABC' is already open in another session."
    where 'ABC' is the query name.
    Can you please tell me how to use the same POWL query for multiple users ?
    A fast reply would be highly appreciated.
    Thanks and Regards,
    Sandhya

    Batch processing usually involves using actions you have recorded.  In Action you can insert Path that can be used during processing documents.  Path have some size so you may want to only process document that have the same size.  Look in the Actions Palette fly-out menu for insert path.  It inserts|records the current document work path into the action being worked on and when the action is played it inserts the path into the document as the current work path..

  • Multiple users accessing the same data in a global temp table

    I have a global temp table (GTT) defined with 'on commit preserve rows'. This table is accessed via a web page using ASP.NET. The application was designed so that every one that accessed the web page could only see their data in the GTT.
    We have just realized that the GTT doesn't appear to be empty as new web users use the application. I believe it has something to do with how ASP is connecting to the database. I only see one entry in the V$SESSION view even when multiple users are using the web page. I believe this single V$SESSION entry is causing only one GTT to be available at a time. Each user is inserting into / selecting out of the same GTT and their results are wrong.
    I'm the back end Oracle developer at this place and I'm having difficulty translating this issue to the front end ASP team. When this web page is accessed, I need it to start a new session, not reuse an existing session. I want to keep the same connection, but just start a new session... Now I'm losing it.. Like I said, I'm the back end guy and all this web/connection/pooling front end stuff is magic to me.
    The GTT isn't going to work unless we get new sessions. How do we do this?
    Thanks!

    DGS wrote:
    I have a global temp table (GTT) defined with 'on commit preserve rows'. This table is accessed via a web page using ASP.NET. The application was designed so that every one that accessed the web page could only see their data in the GTT.
    We have just realized that the GTT doesn't appear to be empty as new web users use the application. I believe it has something to do with how ASP is connecting to the database. I only see one entry in the V$SESSION view even when multiple users are using the web page. I believe this single V$SESSION entry is causing only one GTT to be available at a time. Each user is inserting into / selecting out of the same GTT and their results are wrong.
    I'm the back end Oracle developer at this place and I'm having difficulty translating this issue to the front end ASP team. When this web page is accessed, I need it to start a new session, not reuse an existing session. I want to keep the same connection, but just start a new session... Now I'm losing it.. Like I said, I'm the back end guy and all this web/connection/pooling front end stuff is magic to me.
    The GTT isn't going to work unless we get new sessions. How do we do this?
    Thanks!You may want to try changing your GTT to 'ON COMMIT DELETE ROWS' and have the .Net app use a transaction object.
    We had a similar problem and I found help in the following thread:
    Re: Global temp table problem w/ODP?
    All the best.

  • Not able to access Mozilla with the generic account (NIS account) by multiple users simultaneously

    • Using a single Generic account multiple users are trying to login from different machines simultaneously to Mozilla Firefox. • The Mozilla Firefox is fully operational only for the first user who has initially opened Firefox session. • If the second user trying to access the Firefox with the same account, it is displayed as there is another session is already running and most of the Firefox options are getting grayed out i.e the navigation, history and forward/ backward tabs available in the menus become inaccessible.Our Requirement is that multiple users need to access multiple sessions simultaneously with all the features of Firefox available. Kindly assist me here.

    Same problem, Pls help me

  • Multiple users and shopping carts, one searchable index?

    Hi all,
    I've got an idea but I would like to know if it possible with Business Catalyst. I'll try and explain as simply as possible:
    I have multiple users (let's say 10). They all need separate shopping carts as they are all selling different products. They all need their own admin areas that keep track of their incomes, workflows, shopping carts, etc. They are essentially 10 independent users. Will the WebCommerce10 plan satisfy their needs, or will 10 separate WebCommerce single plans need to be sold?
    Taking the above into account, is there anyway to have 10 independent shopping carts, but they can all be searchable simultaneously? e.g. think eBay, lots of users with their own independent admin areas and products, but one search field returning many results from all the user's shopping carts? Is there anyway to achieve something like this with BC? Can subdomains do this? Any other ideas how to achieve this if none of the above is possible?
    My plan B is having a landing page where a link for each of the 10 users will take them to their relevant shopping carts, but this experience isn't quite as integrated as I would like, from a web surfer's point of view.
    Thanks.
    Clint,
    Komma Media

    Hi Robbie,
    Yes, this would require significant modification to the shopping cart functionality. As it is now, it's very dependent the ShoppingCart being associated with the session and therefore the user. To change that would be significant work.
    Additionally, if you had two people logging in to the same account and editing the same order around the same time, this would tend to not to work well. This is because two users would be two sessions and they would often get routed to different app server instances. Because the way orders are managed, there's no way to immediately sync up the changes between multiple instances, and if you managed to do it would likely slow things down drastically. I would not recommend trying this with ATG.
    Thanks.
    Nick Glover
    Oracle Support for ATG Products

Maybe you are looking for