V$session comand...

I was wondering if there is a better method to identify
the command being executed to establish a session via pl/sql.
v$session gives only the name of the command, not the full path to that command, and this is somewhat limiting.
example:
I might run /my/path/to/command to establish a
session.
If I also connect with sqlplus, and examine
v$session, I can only see this:
command@hostname
I'd like to be able to lookup:
/my/path/to/command
if possible.
Any help would be appreciated. :)
-- chuck

I'm not sure I follow the question -- is this TopLink related or perhaps you've accidentally posted to the wrong group?
- Don

Similar Messages

  • 30EA3: Monitor sessions grid freezes when scrolling lo last session

    Hi,
    I've found an issue with the Monitor Sessions grid.
    Steps to reproduce the problem (scenario I have tested an reproduced the issue)
    1. Open monitor sessions window
    2. Order the grid by "OS User" column (In this scenario, my "OS user" is the last one alphabetically)
    3. Scroll down in the grid, until reach the last record (as mentioned above, the last session is the same session that is monitoring since my user is the last one alphabetically)
    Then SQL Developer freezes, processor time and memory start to increase; and also, seems that SQL Developer window is trying to get the focus, so it doesnt let me navigate freely to other applications, is even difficult to open task manager to kill the process since SQL developer window in the background keeps getting the focus of mouse and keyboard.
    Thanks and regards
    Ramiro Teran

    Hi Raghu,
    1. As I mentioned, the scenario I tested was the "Monitor Sessions" grid, at first I only tested scrolling down to the last record, in the master grid using the mouse wheel, but now I have also tried crtl+end, and it also happens
    2. 184 records in parent grid (Sessions)
    3. The child grid is the "Active SQL" tab (first tab) of the detail of the session.
    4. Yes, there was a cell in master selected, but when scrolling down and reaching the bottom (or doing ctrl+end), then the last cell is selected automatically, and SQLDeveloper freezes.
    As mentioned in my first post, the SQLDeveloper not only freezes, but doesn't let you navigate to other windows (every couple of seconds SQLDeveloper gets focus on its window, even though is frozen)
    I have took an screenshot showing the issue, even though, maybe you can't appreciate the issue on an image, since the image only shows the last record of the monitor sessions grid selected, (at that time SQL developer is hanged, and doens't respond to clics or keyboard comands). Also it shows the Task Manager showing increased memory and CPU ussage from the SQL Developer process. If you're interested in this screenshot, let me know where/how to upload it
    Thanks and Regards
    Ramiro

  • Quires on Session in JSP

    Hi all,
    I had a quires in regards to storing information in the jsp page. I had store the user information in the vector and had add into the jsp page using the below code ( i store this in a jsp page called loginAcct.jsp)
    request.getSession().setAttribute("acctList", acct);
    However, when i tried to retrieve the information that i had store in the "'acctList" using the below comand i got nothing. ( I was trying to retrieve these information in another jsp page name listAcct.jsp)
    <%
    tempAcct = (Vector) request.getSession().getAttribute("acctList");
    Enumeration e = tempAcct.elements();
    while (e.hasMoreElements()) {
    AccountData acct = (AccountData) e.nextElement();
    %>
    <TR BGCOLOR="#<%=((count%2)==0)?"FFCCCC":"FFFFFF" %>">
    <TD><%= acct.getAccountId() %></TD>
    <TD><%= acct.getUserName() %></TD>
    </TR>
    <% } %>
    Can anyone point out what i had not done to make the printout appear on the web page????
    Many Thanks
    wilson

    The code looks good to me.
    I guess you should just make sure you are executing it!.
    Do you have session cookies enabled?
    Are you in the same web browser session?
    Are you accessing a jsp page within the same application?
    How do you get from one page to the other?
    Try calling this method:
    pageContext.getAttributeNamesInScope(pageContext.SESSION_SCOPE)
    It returns a list of all the attributes you have set in the session scope.
    Loop through it and print out all the names - see if your one is being set.
    Good luck,
    evnafets

  • Create functio on Comand line!

    Hi!!
    I need to create download procedure, so i must modify the stored function called "wwv_flow_epg_include_mod_local" using SQL comand line.
    Example: http://daust.blogspot.com/2006/04/xe-calling-stored-procedures.html
    I make:
    SQL> connect
    SQL>SYSTEM
    SQL>PASSWORD
    connected
    SQL>alter session set current_schema=FLOWS_020100;
    Session altered.
    SQL>CREATE OR REPLACE function wwv_flow_epg_include_mod_local(
    procedure_name in varchar2)
    2 return boolean
    3 is
    4 begin
    5 if upper(procedure_name) in ('LIONEL.DOWNLOAD_MY_FILE') then
    6 return TRUE;
    7 else
    8 return FALSE;
    9 end if;
    10 end wwv_flow_epg_include_mod_local;
    11
    12
    13
    14
    15
    What should i make to run the create funtion?
    Why it dont stop creating lines?
    Thanks Lionel

    A simple slash and it has create the function and now the download procedure is working.
    Thank´s a lot

  • Logoff remote sessions to multiple servers for the same user

    Hi,
    I'm after some advice, I have a junior DBA working with me who has a tendancy to leave remote connections on various production servers, we have a large estate about 300 servers and trying to identify the servers is a difficult task.
    I was hoping to use SQL Server Management Studio / Registered servers and issue one simple command against all servers to logoff the account which has been left connected. I normally log into each server start Task Manager/Users and log off the account,
    this then stops the account locking but only when I have identified all servers he is still connected to. I have tried the comand prompt Logoff and session ID, this works great but the session ID on each server can be different.
    Any help or advice would be great! Thanks in advance.

    Hi
    I think it would be easier to enable session time out settings using GPO considering you work in a domain environment..
    Having session timeouts settings you could say... hey after 15 min of inactivity disconnect the user and then after 15 min of disconnected session log him off
    Take a look at this URL: http://technet.microsoft.com/en-us/library/cc754272.aspx
    Hope this helps
    Best regards
    Joaquin Camarero Muñoz

  • I need to pass a SHELL VARIABLE to a SQL COMAND

    Hi
    I retrieve the values of SID and SERIAL of this way:
    SID=`sqlplus -s user/pass @$DIR_SCRIPTS/select_sid.sql`
    SERIAL=`sqlplus -s user/pass @DIR_SCRIPTS/select_serial.sql`
    if i execute a echo comand
    $ echo $SID
    123
    $ echo $SERIAL
    3453
    Now, i execute in my script:
    $ORACLE_HOME/bin/sqlplus "/ as sysdba" << EOF
    set echo on
    ALTER SYSTEM KILL SESSION ' ' ${SID},${SERIAL}' ' ;
    exit;
    But not work. i dont know how write the comand sql inside the shell script to accept the variables
    Please, help me anyone?

    Kindly check the initial syntax -
    http://www.oracle-base.com/articles/misc/KillingOracleSessions.phpI think it should be -
    ALTER SYSTEM KILL SESSION ' ${SID},${SERIAL} ';N.B.: Not Tested...
    Regards.
    Satyaki De.

  • 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

  • SSO Partner Application and Session Time out

    Hi ,
    We have an application on forums.oracle.com which is implementing the Authentication scheme as SSO, that is working well, now we want to implement Session Time out if the user is idle for some time and ask him to login again after the session fails, I have tried to implement this feature as given by Scott in the thread session timeout , well the problem is since we dont have a login page here how do we set the cookies owa_cookie.send(
    name => 'HTMLDB_IDLE_SESSION',
    value => to_char(sysdate+(20/1440),'DD-MON-YYYY HH24:MI:SS'),
    expires => null,
    path => '/',
    domain => null
    and where is the current point to implement it.
    Any help on this is greatly welcome.
    Thanks in Advance.

    Naveen,
    I don't remember how the solution works. But if you don't have a login page you can usually put code in the post-authentication process of your authentication scheme to do whatever the login page process would have done.
    Scott

  • 3rd Party AIFF loops tempo changes from loop library and Logic session

    Hi there,
    Hope somebody out there can help me out!
    I've recently purchased some 3rd party loops, some in AIFF and some in WAV (Which I have converted to AIFF using the Apple Loops Utility), and i have been able to get these into the logic Loop library successfully.....Or so I thought!
    The problem I am having is that when previewing one of my loops it's often double the speed that the set tempo, and this will happen to ALL of my loops. But when I drag one into my session, Logic asks if it should copy over the automation data with it, click yes, and it plays fine in the arrange window. And funnily enough, all of my loops in the library start playing at the correct tempo!
    Once this has all happened, i've tried quitting logic, and re-opening....but the issue just happens again....
    Has anyone else had this problem, or have any idea as to what the issue may be??
    Any help would be greatly appreciated!!
    - Aaron

    Hi there,
    Hope somebody out there can help me out!
    I've recently purchased some 3rd party loops, some in AIFF and some in WAV (Which I have converted to AIFF using the Apple Loops Utility), and i have been able to get these into the logic Loop library successfully.....Or so I thought!
    The problem I am having is that when previewing one of my loops it's often double the speed that the set tempo, and this will happen to ALL of my loops. But when I drag one into my session, Logic asks if it should copy over the automation data with it, click yes, and it plays fine in the arrange window. And funnily enough, all of my loops in the library start playing at the correct tempo!
    Once this has all happened, i've tried quitting logic, and re-opening....but the issue just happens again....
    Has anyone else had this problem, or have any idea as to what the issue may be??
    Any help would be greatly appreciated!!
    - Aaron

  • IMac running 10.7.3 stuck on rainbow wheel right after desktop launches and google chrome trying to restore a previous browsing session

    Hello All - thanks in advance for your help with this.
    The problem I'm encountering is on an iMac 24" from 2008, Intel Core 2Duo 1.3 GHz processor.  I'm running 10.7.3 but have yet to install the client combo update.
    My computer would not wake from sleep this morning after having been left on all night.  The last two apps I had been running last night before this morning's freeze up were Google Chrome and iTunes.  I restarted the computer and noticed at the login screen that one of the login accounts that is normally set up for use had disappeared.  Once I logged in to my account, which had not disappeared, and arrived at the desktop, Chrome automatically tried to relaunch and restore the previous session with a note indicating that the browser had not been quit properly.
    iTunes was running as well but had no functionality - non responsive to mouse click commands, etc.  About thirty seconds later the rainbow wheel appeared and began spinning.
    Tried force quitting both applications applications respectively but the finder was non-responsive as well.  The dock would pop up when moused over but I was not permitted to select any of the icons.  Restarted the computer and essentially the same thing occurred but I was able to quit out of iTunes this time before the rainbow wheel started.
    Tried restarting with all peripheral hardware disconnected.  No change.  Tried booting up in safe mode - didn't work.  Rebooted in disk utility mode - ran disk verification and was told all was well.  Ran permissions verifications and was told there were problems.  Repaired the permissions issues successfully.  Rebooted again but same issue with desktop/apps freezing up.  Rebooted into Disk Utility mode and tried a reinstall of lion - reinstall successul but upon normal reboot desktop still frozen once I launched Chrome and attempted to get to apple site to download the 10.7.3 patch.
    Tried rebooting in disk utility mode to restore from a time machine back up - the external hard drive where my back ups are stored did not appear as a restore source even though I had reconnected the USB cable. 
    I then rebooted again into disk utility mode and tried to use safari to navigate to the apple site and download the 10.7.3 client combo update.  No dice - received error messages saying the download could not be completed because there was insufficient memory available.
    Called Apple - rep said I should take the computer in to the store - refused as of the time of the call because I had already wasted half the day on this and didn't want to flush the remainder down the toilet hanging around at the Apple store.  So much for that - the day is now totally wasted any way.
    Another couple of bits of information which may or may not be helpful:
    When I'm in disk utility mode the disk image icon at the top of the list of disk images/mounts on the left hand side of the utility window is in red text: 320.07 GB WDC WD320...and the main dialogue box says: "This drive has a hardware problem that can't be repaired.  Back up Data and see Apple dealer for help." One might conclude that my computer is therefore dead...not exactly.  This happened once before after trying to set up a bootcamp partition using XP instead of windows 7.  XP is not supported by Lion but I was trying a work around.  Soon thereafter I upgraded my OS to 10.7.2 (or.3 can't remember) using software updater instead of a full native download from the Apple Support site and the computer went bananas.  After the upgrade I was getting the CUI ???? errors which have since become infamous.  While working with Apple phone support on the CUI issue and using disk utility on that issue, that same red text disc image came up and the note about my hardware having failed as described above.  Apple told me I was cooked and my machine was finished.  They were wrong.  I can't remember what I did but I worked on the problem a bit more and was eventually able to upgrade my OS from the native download and get my machine back in order and runnign fine.
    I recently attempted the bootcamp partition (stupidly) work around for XP again without success - last week before all of the latest drama set in.  YES I have learned my lession and will not attempt this again.
    So that's what's going on - sorry for the Moby Dick lenght description but I figured the more details available the more likely some one is to know how to fix the problem.
    Any thoughts, suggestions, HELP please!!!
    Thanks.

    Hello All - thanks in advance for your help with this.
    The problem I'm encountering is on an iMac 24" from 2008, Intel Core 2Duo 1.3 GHz processor.  I'm running 10.7.3 but have yet to install the client combo update.
    My computer would not wake from sleep this morning after having been left on all night.  The last two apps I had been running last night before this morning's freeze up were Google Chrome and iTunes.  I restarted the computer and noticed at the login screen that one of the login accounts that is normally set up for use had disappeared.  Once I logged in to my account, which had not disappeared, and arrived at the desktop, Chrome automatically tried to relaunch and restore the previous session with a note indicating that the browser had not been quit properly.
    iTunes was running as well but had no functionality - non responsive to mouse click commands, etc.  About thirty seconds later the rainbow wheel appeared and began spinning.
    Tried force quitting both applications applications respectively but the finder was non-responsive as well.  The dock would pop up when moused over but I was not permitted to select any of the icons.  Restarted the computer and essentially the same thing occurred but I was able to quit out of iTunes this time before the rainbow wheel started.
    Tried restarting with all peripheral hardware disconnected.  No change.  Tried booting up in safe mode - didn't work.  Rebooted in disk utility mode - ran disk verification and was told all was well.  Ran permissions verifications and was told there were problems.  Repaired the permissions issues successfully.  Rebooted again but same issue with desktop/apps freezing up.  Rebooted into Disk Utility mode and tried a reinstall of lion - reinstall successul but upon normal reboot desktop still frozen once I launched Chrome and attempted to get to apple site to download the 10.7.3 patch.
    Tried rebooting in disk utility mode to restore from a time machine back up - the external hard drive where my back ups are stored did not appear as a restore source even though I had reconnected the USB cable. 
    I then rebooted again into disk utility mode and tried to use safari to navigate to the apple site and download the 10.7.3 client combo update.  No dice - received error messages saying the download could not be completed because there was insufficient memory available.
    Called Apple - rep said I should take the computer in to the store - refused as of the time of the call because I had already wasted half the day on this and didn't want to flush the remainder down the toilet hanging around at the Apple store.  So much for that - the day is now totally wasted any way.
    Another couple of bits of information which may or may not be helpful:
    When I'm in disk utility mode the disk image icon at the top of the list of disk images/mounts on the left hand side of the utility window is in red text: 320.07 GB WDC WD320...and the main dialogue box says: "This drive has a hardware problem that can't be repaired.  Back up Data and see Apple dealer for help." One might conclude that my computer is therefore dead...not exactly.  This happened once before after trying to set up a bootcamp partition using XP instead of windows 7.  XP is not supported by Lion but I was trying a work around.  Soon thereafter I upgraded my OS to 10.7.2 (or.3 can't remember) using software updater instead of a full native download from the Apple Support site and the computer went bananas.  After the upgrade I was getting the CUI ???? errors which have since become infamous.  While working with Apple phone support on the CUI issue and using disk utility on that issue, that same red text disc image came up and the note about my hardware having failed as described above.  Apple told me I was cooked and my machine was finished.  They were wrong.  I can't remember what I did but I worked on the problem a bit more and was eventually able to upgrade my OS from the native download and get my machine back in order and runnign fine.
    I recently attempted the bootcamp partition (stupidly) work around for XP again without success - last week before all of the latest drama set in.  YES I have learned my lession and will not attempt this again.
    So that's what's going on - sorry for the Moby Dick lenght description but I figured the more details available the more likely some one is to know how to fix the problem.
    Any thoughts, suggestions, HELP please!!!
    Thanks.

  • When I login to EBS as Japan language session some Forms Application is Eng

    Hi ,
    have recently applied japan NLS on r121.1 and later upgraded to 12.1.3 also applied 9239090(japan as well).
    But customer has complained the error below.
    Any ideas on it .
    Forms Application is still English.
    When I login to EBS as Japan language session, some Forms Application is English.
    e.g
    user MFG
    pass welcome
    Resp Manufacturing and Distribution Manager
    Path Inventory>品目>品目関連
    Thanks

    ls: /u100/app/HONDA1/orhonda1/oracle/aphonda1/apps/apps_st/appl/po/12.0.0/forms/JA/POXRQVRQ.fmx: No such file or directoryThis indicates that the fmx file was not generated via adadmin -- Can you upload the adadmin log file here?
    and also, after logging into the application selecting japan,to the left side i can see some responsibilities in english still..Is this the normal behaviour.No.
    Have you generated all NLS menus via adadmin? If possible, upload the log file.
    In the preferences tab when i check,logging to application with english can see the below..
    Current Session Language :- American English
    Default Session Language :- American English
    Is the above correct ?
    Do we need to perform any steps to so that we can see the responsibilites in english.Change the session language to Japanese and check then.
    Thanks,
    Hussein

  • SSL VPN, "Login failed" and "WebVPN: error creating WebVPN session!"

    Hi,
    Just ran the wizard for Anyconnect SSL VPN, created a tunnel group, a vpn pool and added user to it. When trying to logon on the SSL service, it simply says "login failed". I suspect that the user might not be in correct groups or so?
    some relevant config
    webvpn
    enable wan
    svc image disk0:/anyconnect-win-2.4.1012-k9.pkg 1
    svc enable
    group-policy vpnpolicy1 internal
    group-policy vpnpolicy1 attributes
    vpn-tunnel-protocol svc
    tunnel-group admins type remote-access
    tunnel-group admins general-attributes
    address-pool sslpool2
    default-group-policy vpnpolicy1
    username myuser password 1234567890 encrypted privilege 15
    username myuser  attributes
    vpn-group-policy vpnpolicy1
    Debug:
    asa01# debug webvpn 255
    INFO: debug webvpn  enabled at level 255.
    asa01# webvpn_allocate_auth_struct: net_handle = CD5734D0
    webvpn_portal.c:ewaFormSubmit_webvpn_login[3203]
    webvpn_portal.c:webvpn_login_validate_net_handle[2234]
    webvpn_portal.c:webvpn_login_allocate_auth_struct[2254]
    webvpn_portal.c:webvpn_login_assign_app_next[2272]
    webvpn_portal.c:webvpn_login_cookie_check[2289]
    webvpn_portal.c:webvpn_login_set_tg_buffer_from_form[2325]
    webvpn_portal.c:webvpn_login_transcend_cert_auth_cookie[2359]
    webvpn_login_transcend_cert_auth_cookie: tg_cookie = NULL, tg_name =
    webvpn_portal.c:webvpn_login_set_tg_cookie_form[2421]
    webvpn_portal.c:webvpn_login_set_tg_cookie_querry_string[2473]
    webvpn_portal.c:webvpn_login_resolve_tunnel_group[2546]
    webvpn_login_resolve_tunnel_group: tgCookie = NULL
    webvpn_login_resolve_tunnel_group: tunnel group name from default
    webvpn_login_resolve_tunnel_group: TG_BUFFER = DefaultWEBVPNGroup
    webvpn_portal.c:webvpn_login_negotiate_client_cert[2636]
    webvpn_portal.c:webvpn_login_check_cert_status[2733]
    webvpn_portal.c:webvpn_login_cert_only[2774]
    webvpn_portal.c:webvpn_login_primary_username[2796]
    webvpn_portal.c:webvpn_login_primary_password[2878]
    webvpn_portal.c:webvpn_login_secondary_username[2910]
    webvpn_portal.c:webvpn_login_secondary_password[2988]
    webvpn_portal.c:webvpn_login_extra_password[3021]
    webvpn_portal.c:webvpn_login_set_cookie_flag[3040]
    webvpn_portal.c:webvpn_login_set_auth_group_type[3063]
    webvpn_login_set_auth_group_type: WEBVPN_AUTH_GROUP_TYPE = 4
    webvpn_portal.c:webvpn_login_aaa_not_resuming[3137]
    webvpn_portal.c:http_webvpn_kill_cookie[790]
    webvpn_auth.c:http_webvpn_pre_authentication[2321]
    WebVPN: calling AAA with ewsContext (-867034168) and nh (-849922864)!
    webvpn_add_auth_handle: auth_handle = 17
    WebVPN: started user authentication...
    webvpn_auth.c:webvpn_aaa_callback[5138]
    WebVPN: AAA status = (ACCEPT)
    webvpn_portal.c:ewaFormSubmit_webvpn_login[3203]
    webvpn_portal.c:webvpn_login_validate_net_handle[2234]
    webvpn_portal.c:webvpn_login_allocate_auth_struct[2254]
    webvpn_portal.c:webvpn_login_assign_app_next[2272]
    webvpn_portal.c:webvpn_login_cookie_check[2289]
    webvpn_portal.c:webvpn_login_set_tg_buffer_from_form[2325]
    webvpn_portal.c:webvpn_login_transcend_cert_auth_cookie[2359]
    webvpn_login_transcend_cert_auth_cookie: tg_cookie = NULL, tg_name =
    webvpn_portal.c:webvpn_login_set_tg_cookie_form[2421]
    webvpn_portal.c:webvpn_login_set_tg_cookie_querry_string[2473]
    webvpn_portal.c:webvpn_login_resolve_tunnel_group[2546]
    webvpn_portal.c:webvpn_login_negotiate_client_cert[2636]
    webvpn_portal.c:webvpn_login_check_cert_status[2733]
    webvpn_portal.c:webvpn_login_cert_only[2774]
    webvpn_portal.c:webvpn_login_primary_username[2796]
    webvpn_portal.c:webvpn_login_primary_password[2878]
    webvpn_portal.c:webvpn_login_secondary_username[2910]
    webvpn_portal.c:webvpn_login_secondary_password[2988]
    webvpn_portal.c:webvpn_login_extra_password[3021]
    webvpn_portal.c:webvpn_login_set_cookie_flag[3040]
    webvpn_portal.c:webvpn_login_set_auth_group_type[3063]
    webvpn_login_set_auth_group_type: WEBVPN_AUTH_GROUP_TYPE = 4
    webvpn_portal.c:webvpn_login_aaa_resuming[3093]
    webvpn_auth.c:http_webvpn_post_authentication[1485]
    WebVPN: user: (myuser) authenticated.
    webvpn_auth.c:http_webvpn_auth_accept[2938]
    webvpn_session.c:http_webvpn_create_session[184]
    WebVPN: error creating WebVPN session!
    webvpn_remove_auth_handle: auth_handle = 17
    webvpn_free_auth_struct: net_handle = CD5734D0
    webvpn_allocate_auth_struct: net_handle = CD5734D0
    webvpn_free_auth_struct: net_handle = CD5734D0

    AnyConnect says:
    "The secure gateway has rejected the agents VPN connect or reconnect request. A new connection requires re-authentication and must be started manually. Please contact your network administrator if this problem persists.
    The following message was received from the secure gateway: Host or network is 0"
    Other resources indicate that it's either the tunnel group, or the address pool.. The address pool is:
    ip local pool sslpool2 172.16.20.0-172.16.20.254 mask 255.255.255.0
    asa01# debug webvpn 255
    INFO: debug webvpn  enabled at level 255.
    asa01# debug http 255
    debug http enabled at level 255.
    asa01# webvpn_allocate_auth_struct: net_handle = CE9C3208
    webvpn_portal.c:ewaFormSubmit_webvpn_login[3203]
    webvpn_portal.c:webvpn_login_validate_net_handle[2234]
    webvpn_portal.c:webvpn_login_allocate_auth_struct[2254]
    webvpn_portal.c:webvpn_login_assign_app_next[2272]
    webvpn_portal.c:webvpn_login_cookie_check[2289]
    webvpn_portal.c:webvpn_login_set_tg_buffer_from_form[2325]
    webvpn_portal.c:webvpn_login_transcend_cert_auth_cookie[2359]
    webvpn_login_transcend_cert_auth_cookie: tg_cookie = NULL, tg_name =
    webvpn_portal.c:webvpn_login_set_tg_cookie_form[2421]
    webvpn_portal.c:webvpn_login_set_tg_cookie_querry_string[2473]
    webvpn_portal.c:webvpn_login_resolve_tunnel_group[2546]
    webvpn_login_resolve_tunnel_group: tgCookie = NULL
    webvpn_login_resolve_tunnel_group: tunnel group name from default
    webvpn_login_resolve_tunnel_group: TG_BUFFER = DefaultWEBVPNGroup
    webvpn_portal.c:webvpn_login_negotiate_client_cert[2636]
    webvpn_portal.c:webvpn_login_check_cert_status[2733]
    webvpn_portal.c:webvpn_login_cert_only[2774]
    webvpn_portal.c:webvpn_login_primary_username[2796]
    webvpn_portal.c:webvpn_login_primary_password[2878]
    webvpn_portal.c:webvpn_login_secondary_username[2910]
    webvpn_portal.c:webvpn_login_secondary_password[2988]
    webvpn_portal.c:webvpn_login_extra_password[3021]
    webvpn_portal.c:webvpn_login_set_cookie_flag[3040]
    webvpn_portal.c:webvpn_login_set_auth_group_type[3063]
    webvpn_login_set_auth_group_type: WEBVPN_AUTH_GROUP_TYPE = 4
    webvpn_portal.c:webvpn_login_aaa_not_resuming[3137]
    webvpn_portal.c:http_webvpn_kill_cookie[790]
    webvpn_auth.c:http_webvpn_pre_authentication[2321]
    WebVPN: calling AAA with ewsContext (-845538720) and nh (-828624376)!
    webvpn_add_auth_handle: auth_handle = 22
    WebVPN: started user authentication...
    webvpn_auth.c:webvpn_aaa_callback[5138]
    WebVPN: AAA status = (ACCEPT)
    webvpn_portal.c:ewaFormSubmit_webvpn_login[3203]
    webvpn_portal.c:webvpn_login_validate_net_handle[2234]
    webvpn_portal.c:webvpn_login_allocate_auth_struct[2254]
    webvpn_portal.c:webvpn_login_assign_app_next[2272]
    webvpn_portal.c:webvpn_login_cookie_check[2289]
    webvpn_portal.c:webvpn_login_set_tg_buffer_from_form[2325]
    webvpn_portal.c:webvpn_login_transcend_cert_auth_cookie[2359]
    webvpn_login_transcend_cert_auth_cookie: tg_cookie = NULL, tg_name =
    webvpn_portal.c:webvpn_login_set_tg_cookie_form[2421]
    webvpn_portal.c:webvpn_login_set_tg_cookie_querry_string[2473]
    webvpn_portal.c:webvpn_login_resolve_tunnel_group[2546]
    webvpn_portal.c:webvpn_login_negotiate_client_cert[2636]
    webvpn_portal.c:webvpn_login_check_cert_status[2733]
    webvpn_portal.c:webvpn_login_cert_only[2774]
    webvpn_portal.c:webvpn_login_primary_username[2796]
    webvpn_portal.c:webvpn_login_primary_password[2878]
    webvpn_portal.c:webvpn_login_secondary_username[2910]
    webvpn_portal.c:webvpn_login_secondary_password[2988]
    webvpn_portal.c:webvpn_login_extra_password[3021]
    webvpn_portal.c:webvpn_login_set_cookie_flag[3040]
    webvpn_portal.c:webvpn_login_set_auth_group_type[3063]
    webvpn_login_set_auth_group_type: WEBVPN_AUTH_GROUP_TYPE = 4
    webvpn_portal.c:webvpn_login_aaa_resuming[3093]
    webvpn_auth.c:http_webvpn_post_authentication[1485]
    WebVPN: user: (myuser) authenticated.
    webvpn_auth.c:http_webvpn_auth_accept[2938]
    HTTP: net_handle->standalone_client [0]
    webvpn_session.c:http_webvpn_create_session[184]
    webvpn_session.c:http_webvpn_find_session[159]
    WebVPN session created!
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_remove_auth_handle: auth_handle = 22
    webvpn_portal.c:ewaFormServe_webvpn_cookie[1805]
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_allocate_auth_struct: net_handle = CE9C3208
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_allocate_auth_struct: net_handle = CE9C3208
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_allocate_auth_struct: net_handle = CE9C3208
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_allocate_auth_struct: net_handle = CE9C3208
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_allocate_auth_struct: net_handle = CE9C3208
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C3208
    webvpn_allocate_auth_struct: net_handle = CE863DE8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE863DE8
    webvpn_allocate_auth_struct: net_handle = CE863DE8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE863DE8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE863DE8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE863DE8
    webvpn_allocate_auth_struct: net_handle = CE863DE8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE863DE8
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C32C8
    HTTP: Periodic admin session check  (idle-timeout = 1200, session-timeout = 0)
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    webvpn_auth.c:webvpn_auth[581]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    WebVPN: session has been authenticated.
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_allocate_auth_struct: net_handle = CE9C32C8
    ewsStringSearch: no buffer
    Close 0
    webvpn_free_auth_struct: net_handle = CE9C32C8
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_allocate_auth_struct: net_handle = CC894AA8
    webvpn_session.c:http_webvpn_find_session[159]
    webvpn_session.c:webvpn_update_idle_time[1463]
    Close 1043041832
    webvpn_free_auth_struct: net_handle = CC894AA8

  • Problem with Sessions and window.open

    Hi,
    Hi everyone,
    Help Please!!!
    I am working with Sevlet session objects and HTML forms and windows. I have an HTML form for the user to supply a username and password. Once the user clicks submit I need to open another browser window that has no toolbar, no location, no status bar, etc. The user should also be able to go back to that login screen and login again and open a 2nd, 3rd, etc. instance of the application. My problem is that each application is being asigned the same sessionId. I believe it is being asigned to the main login window and thus to the other child windows it opens. Is there a way to work around this? Do I need to make the user open another browser window to login? I need to be able to let the user open multiple instances of the application with unique session ids for each.
    Any insight is GREATLY appreciated on this topic. Anything you can tell me about sessions (Java), IE, window.open would help greatly!
    THANK YOU IN ADVANCE!!!
    MA

    To achieve this, you must introduce another level of
    abstraction to the Servlet specifications. When you
    work with JSP/Servlets you use mostly the HttpSession
    to handle user related tasks, and the aplication
    context, for things that are common to all users. But
    inside the HttpSession scope, you want to create
    containers that have 'smaller' scope and are uniquely
    identified.
    A ipothetical scenario :Let's say that you must have
    multiple connections to several databases, on each
    database user rights beeing diferrent, and you must be
    able to track user actions globaly, and eventualy
    capture a 'Close Application event' and close all db.
    connections.
    1. when the user first accesses the login frame create
    the HttpSession. In the HttpSession object, store a
    Hastable (let's call it 'ConnectionTable'). Each
    object in the Hashtable must identify uniqely a
    database connection. Now, to create unique identifiers
    ids, make the keys in the hashtable java.lang.Long
    objects, created using System.getCurrentTimeMillis().
    This guaranties there will be no possible confusion.
    From each new open window, on each request to the
    server, along with the usefull parameters, send the
    connection identifier. When proccessing the request,
    select the object from the Hastable wich corresponds
    to the ID.
    2. Now, the values in the ConnectionTable, must act as
    the containers that I mentioned in the first
    paragraph. The simplest way to do this is to have
    again a Hashtable derived class to do the job, wich
    exploses methods similar to HttpSession: setAttibute (
    Object key, Object value) and getAttibute ( Object
    key, Object value). This container may use internally
    a Hashtable to store object, and explose only the
    getAttribute and setAttribute methods for clarity. Any
    way, this is a problem of implementation. Let's call
    this class CustomSession.
    Now, a textual activity diagram:
    1 user accesses the main page, you start a new
    HttpSession; In the HttpSession object, store the
    ConnectionTable object.
    2. the user enters the userID and pwd and adatabase
    name, and a new window is opened. Let's supose the
    data entered is valid.
    3. when you process the login data, you create a new
    CustomSession object. you put in it whatever you would
    put in your HttpSession. You generate a unique
    identifier using System.CurrentTimeMillis(). Put the
    CustomSession object in the ConnectionTable, using the
    generated id as key. Send the response.
    ..... later on .....
    100. the user asks for a particular action to be
    performed - e.g. a row deletion. The page contains a
    form with text field where the user introduces the
    row number, a submit button and a hidden input with
    the ID.
    101. you process the data. Get the ID from the request
    object, get the ConnectionTable from the session, get
    the CustomSession using the ID as key, do whatever
    your logic was doing, but obtaining the objects from
    the CustomSession instead of HttpSession
    NicNic,
    Very slick idea. I think that it could work and it seems that there would be not security issues because the id that you would store on the client side is the Unique Identifier and not the actual Session Id. Do you forsee any security issues for this implementation?

  • How do I stop FF from restoring previous session, I've already played with all the options I can find but nothing stops it unless I delete history each time.

    Recently, FF has started opening my last tabs when I start a fresh session. I have already checked to make sure that none of the applicable settings are enabled, such as under Options->General: When FF starts "SHOW MY HOMEPAGE" is selected. But for some reason, it opens my last session. The only way I've been able to get it to stop doing this is by having it delete my browsing history after I close the session. I don't want this since I often use my history to re-find information I need for class research. I have made certain that all my settings are the same from before FF started doing this. It only started doing this after the computer was turned off for a long weekend.
    I've already searched through the Mozilla help pages and all I can find is how to restore the previous session or similar. I don't want to restore my previous session, I want it to stop restoring my previous session without having to delete my browsing history each time.

    Using the instructions here:
    http://kb.mozillazine.org/Session_Restore#Disabling_crash_recovery
    I was able to turn off that feature entirely without having to create a new profile.

  • Open all pages from last session

    Occasionally, safari will die. When I restart safari:
    is there a function to open all pages from last session?
    does firefox have this function? I thought I saw it within firefox, but I can't find it now. If this function is in firefox, where is it?

    In Safari... History > Open all pages from last session
    Firefox should do it automatically.
    Dave

Maybe you are looking for

  • Where can I download Safari 2.0.4?

    Question: Where can I download the prior version of Safari for Mac (2.0.4 or 2.x)? Background: I subscribe to a service (MLB.TV) that on my Mac only works in Safari 2.0.4. I replaced it with the new public beta (3.x), but the site I want to use for w

  • How to have same keyboards input source in Mac and Windows???

    I use Canadian French-CSA on my Mac keyboards input source. Using Windows 7, I can't find the good setting for my keyboards to be the same when I it keys. I run Windows over Parallels Desktop Can anybody help? Thank you

  • How to apply a css style to a radio button.

    I cannot seem to persuade jsf to pass css styles through to a radio button. I have markup like this: <h:selectOneRadio id="direction" styleClass="largish-form" >   <f:selectItem id="positive" itemLabel="positive" itemValue="positive" />   <f:selectIt

  • BAPI to extend material to multiple sales organisation

    Hi Experts, I need to know a BAPI for extending a material to multiple sales org. at one go. My requirement is detailed below: Suppose an user is providing the details as below: Material: 90000038 Sales Org: 0011, 0022, 0033. I need a BAPI where I wi

  • My MSWord .docx download as docx.exe

    Just recently, any MS Word .docx download as docx.exe and I can't open them. .doc open normally.  I can rename the file in Downloads as .docx but would like to find a way to eliminate the download as .docx.exe. Any ideas...?