Session List and Last Access Time

I want to get a list of WebLogic's current/active sessions and find out
the user's last access time for each session. How can I do this? I'm
using WebLogic 4.5.
Thanks in advance.
Sincerely,
William H. Stone
X U M A <build-to-order e-business>
William H. Stone
160 Pine St., 2nd Floor
San Francisco, CA 94111
Phone:(415)777-9988
Fax: (415)777-2704
http://www.xuma.com

I am trying to maintain simultaneous sessions with WebLogic and another
app server. I am writing a daemon that will read thru the active
session list and check to the last activity time. Based on this and a
similar list I get from the other app server, I will "ping" the oldest
session to keep it up to date. The result is that the sessions will not
time out prematurely.
Clear as mud?
-WHS
Mauricio Del Moral wrote:
Many information about your WLS it could be viewed with the Weblogic
Console....but exactly what are you trying to get???--
X U M A <build-to-order e-business>
William H. Stone
160 Pine St., 2nd Floor
San Francisco, CA 94111
Phone:(415)777-9988
Fax: (415)777-2704
http://www.xuma.com

Similar Messages

  • Last Access and Last Update Times for objects in Cache

    Hi,
         We are looking to implement Tangosol cache for our one of our critical J2EE systems and I am pretty new to it. One of the requirements is to know the following timings
         -Time when an object was put in a cache X (Last update of the object)
         -Time when an object was last accessed in the cache X (Last access time of an object)
         Is it possible to get these values through the Tangosol J2EE API?
         Thanks,
         ravi

    Hi Ravi,
         You can use InvocationService to access this information - an example is attached.
         Regards,
         Dimitri<br><br> <b> Attachment: </b><br>DumpCache.java <br> (*To use this attachment you will need to rename 529.bin to DumpCache.java after the download is complete.)

  • Every boot: Superblock last access time in future. HARDWARECLOCK bug?

    Hi,
    Recently (about the last month or so?) every time I boot my Arch, the boot process stops with "superblock last access time in future (time1), now it is  (time2)", and a check is forced. The check never finds or corrects any error, but when I reboot it starts normally. This happens at every boot, but only some of the reboots.
    The weirdest thing is what is the value of time1: I'm at GMT+8, and time2 always shows the current local time, while time1 is a bit less then 8 hours in the future.... It looks like at some point of the boot the timezones are applied in a weird way.  In rc.conf I have HARDWARECLOCK="localtime" because the windows dual-boot needs that, unfortunately. So maybe the hardware clock is first treated as "UTC" and the time zone is added, then a few seconds later it is treated as "localtime" correctly...
      Is there a way to diagnose this? Check what exactly happens during the boot? Or someone has a solution?
      Cheers,
        Greg

    I had a similar problem only on rare occasions though, you could try setting the last mount time with
    tune2fs -T now /dev/sda1
    or what ever your hard drive partitions numbers happen to be.
    Not sure if this was necessary but i also commented out the sections saving system clock in /etc/rc.shutdown
    I am running on localtime and have openntpd adjusting the system clock as it seems to fall behind time if i don't, and have not had any problems since

  • Windows 8 Last Access Time Stamps not working

     Hi I have been trying to fix a issue with last access time stamps not working when I open a file
    so will have time on created modified and accessed from when created but some are wrong like one file
    saying
    created ‎Sunday, ‎September ‎14, ‎2014, ‏‎5:19:32 AM
    modified  ‎Sunday, ‎September ‎14, ‎2014, ‏‎5:19:32 AM
    accessed Sunday, ‎September ‎14, ‎2014, ‏‎5:19:32 AM
    I'm not sure what can cause this please help thank you

    Hi whowhatwere,
    Are you only confused about the last access time not change when you open a file?
    If you want to know more details about modified and created time, we can refer to the following KB.
    http://support.microsoft.com/kb/299648/en-us
    About the accessed time, please refer to the following blog.
    How do I access a file without updating its last-access time?
    http://blogs.msdn.com/b/oldnewthing/archive/2011/10/10/10222560.aspx
    The blog mentioned that: In fact, the intuitive definition of access is more specific: It's "the last time I opened, modified, printed, or otherwise performed some sort of purposeful action on the file."
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Find file by and delete by last access time

    Hi all
    Are there any windows command than can sort out file with files access time ? and then delete
    for example sort out files which are not access for about 2 months then delete.
    and it can also show access by who ?

    Hello sakurai_db,
    A direct approach for this might be to create a powershell script that is executed periodically using a scheduled task.
    Here is a quick sample that you can safely test:
    $Files = Get-ChildItem -file -Path 'C:\Windows\Temp'
    $oldFiles = $Files | ? {$_.LastAccessTime -gt (Get-Date).AddDays(-10)} | Sort FullName | select FullName, LastAccessTime
    $oldFiles | % {Remove-Item -Path $_.fullName -WhatIf}
    This will look in the Windows/Temp location for any files older then 10 days. Then it will remove them (if you remove the -WhatIf parameter at the end).
    Another option, if you are targeting a file server, you might want to use File server management tasks.
    https://technet.microsoft.com/en-us/library/dd759227.aspx
    https://technet.microsoft.com/en-us/library/dd759233.aspx
    Hope it helps
    http://mariusene.wordpress.com/

  • DMV Query -- all Catalogs and last processed time

    Hi 
    I want to get a list of all catalogs & there last processed time, can you join the two DMV queries ?
    SELECT * FROM $System.DBSCHEMA_CATALOGS
    SELECT CUBE_NAME, LAST_DATA_UPDATE FROM $System.MDSCHEMA_CUBES

    I just used the one query , I was trying to list out all the catalogs and illustrate in an excel pivot table, unfortunately the last processed date is not available in the DBSCHEMA_CATALOGS
    c
    In order to get the last processed date I would have to connect to each Catalog to retrieve the data making it useless for excel, as the Last processed date in only available in the $System.MDSCHEMA_CUBES
    schema
    SELECT CUBE_NAME, LAST_DATA_UPDATE FROM $System.MDSCHEMA_CUBES
    Hi Carlo,
    In your scenario, you list out the catalogs using the query below
    SELECT * FROM $System.DBSCHEMA_CATALOGS
    And get the last processed date using the query below.
    SELECT CUBE_NAME, LAST_DATA_UPDATE FROM $System.MDSCHEMA_CUBES
    Now what you want to know if we can use the Join function to join those two queries, right?
    The query engine for DMVs is the Data Mining parser. The DMV query syntax is based on the SELECT (DMX) statement. Although DMV query syntax is based on a SQL SELECT statement, it does not support the full syntax of a SELECT statement. Notably, JOIN, GROUP
    BY, LIKE, CAST, and CONVERT are not supported.
    So your requirement cannot be achieve currently.
    Thank you for your understanding.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Last Accessed Time - Items (sort)

    Hey, 
    I have a Content Search to display the last 50 documents modified by user... but now the client what display this list not for modified time but for accessed time... what is the best way to do that?
    Thanks for help

    I dont think you can get this details in search result using out of box. You can use Audit log report to analyize when the document was last accessed but not sure how you can get this information in search result:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4039f4d4-df21-4934-b7df-d3b78c02881a/documents-last-accessed
    From development prospective, you can develop a solution which can update a column when document is last accessed. then you can incorporate this column in search result.
    Below aricle can help you develop it:
    http://social.msdn.microsoft.com/Forums/en-US/f1fdb467-186c-4a83-9f77-fad38a1222b9/sps-2010-programmatically-derive-last-acessed-date?forum=sharepointdevelopmentprevious

  • List the directory access time

    Hi All
    I want to sort all directories in a file system,which is not accessed for last 1 year,can anybody help me in this

    Files or directories? The directory access time is reset when you read it, which is done whenever you look inside it.
    Do you back up your machine with anything that descendes through the file tree (tar, find/cpio, netbackup, networker), or do you have any cron jobs that run 'find' on the whole filesystem? If so, they'll reset the access time each time they run.
    Darren

  • What exactly is the "last scan time" and "last update" time

    There was a topic last year about this confusion. Here shows the topic and the answers that you might be looking for :)
    Have a great day!
    -Isaac

    It is my understanding that the 'discovery scan' is just for the initial scan and then there is also an update scan that just checks for differences. 
    I have my remote collectors to search specific subnets and scan once a week. Ever since the initial scan they all show up during in the inventory. I see most of them being 'updated' in inventory according to the schedule and the timestamp but the "Last Scan Time" never changes. As such my not scanned in 30 days just continues to build up. The "Last Updated Time" gets updated correctly but nothing else.
    Is this normal behavior? It doesn't seem like it is considering the Not Scanned in 30 days group exists. It wouldn't make sense for that group to exist if there was no need for a "scan" if "updates" worked just fine.
    This topic first appeared in the Spiceworks Community

  • Smart playlists and last played time

    If I have a smart playlist, I noticed the last played time of an item does not update if I have launched and played the item from the main area it appears in (like podcasts).
    Any solution for this?
    Thanks.

    Normally the Last Played time updates when the song reaches the end. That should be true no matter where it is launched from. Are you seeing something different?

  • Price List and Last Purchase Price.

    When a Price List based on the Last Purchase Price is created, we have found that a set of problems arise in companies using u201CGoods Receipt POu201D.
    EXAMPLE:
    Every article received from their suppliers are enclosed with a GOODS RECEIPT.
    After 20 days, the supplier issue an invoice including all the Goods Receipts provided during the corresponding month.
    Recall that the company has a List Price based on the Last Purchase price.
    But, since the Goods Receipt do not update the Last Purchase Price, all new articles in the database, are kept without a Selling Price, and the old articles are not subject to an updated Selling Price.  I enclose a draft to show this behavior.
    [http://s2.subirimagenes.com/privadas/previo/thump_1047037compraitem.jpg]
    You may note that SAP HELP explains:
    1.In addition, two price lists are automatically created and calculated by the system:
        - Last purchase price list u2013 the price list is automatically updated when an item enters the stock with its entering price.
        - Last evaluated price list u2013 the price list is automatically updated after you run the Inventory Valuation report.
    [http://s2.subirimagenes.com/privadas/previo/thump_1047038help-sap-b1-2007a.jpg]
    But this does not happen.
    Selling Prices are only updated when the corresponding invoice is entered, but this happen too late, since the invoice issued 20 days after by the supplier.
    In other words, it does not work properly for the company.   The example shows:
    1 Goods Receipt PO
    2 Item master data with Price calculated alter Goods Receipt processing
    3 base Price driven to zero.
    If Goods Receipts do not update the last Purchase, is not easy to understand why a Selling Price can be based in the Las Purchase Price.
    Our customer and me, think that there is a programming error.
    Otherwise, the system behavior has not be properly explained to SAP users.
    The described facts happen with SAP 2007A PL 49, and SAP 8 PL 5, both versions properly tested
    That we need:  That Goods Receipt update the last purchase Price and Price List could be constructed don Item bases cost.

    Hi Dana,
    I'm not sure if this will solve your problem, but, you can create a new price list which is based on the "Last Purchase Price" and set as a factor of 1.65. I'm not sure if the "Last Purchase Price" updates from the Goods Receipt or the PO though?
    Does this sound like it might solve your problem?

  • My macbook hard drive stopped working and I loaded another hard drive and can access time capsule but it doesn't show any of my old files and I don't understand why

    My 7 year old macbook hard drive stopped working and I put in another hard drive but when I went to restore my information from airport time capsule it only shows today and nothing older.  Help?

    Did you do a TM backup after you installed the disk? It may write over the previous backup.. but it should actually start a new one.
    Read the info about using migration.. see http://pondini.org/TM/Home.html
    Or the Mac is probably looking at the backup as from a different computer.
    See the details of how to use TM to restore to a different Mac.
    Q17 here. http://pondini.org/TM/FAQ.html
    I would read through 14-17 carefully.
    You should be able to do a full recovery of the TM backup to a USB drive plugged into the computer.

  • Need to know last ran by and last ran time of a SSAS cube

    Hi All,
    I'm just wondering if there is a way so that I can see who ran the olap cube recently with the ran time? any help is appreciated.
    Thanks.
    - please mark correct answers

    Here's the view definition I used to create my RefreshInfo table:
    USE <database>
    GO
    IF OBJECT_ID ('dbo.vwRefreshInfo', 'V') IS NOT NULL
    DROP VIEW dbo.vwRefreshInfo;
    GO
    -- Used to display refresh info in workbook
    CREATE VIEW dbo.vwRefreshInfo AS
    SELECT
    CASE WHEN ( SELECT TOP 1 firstName + ' ' + lastName FROM <user table> WHERE userID = RIGHT(CURRENT_USER, LEN(CURRENT_USER) - CHARINDEX('\',CURRENT_USER) ) ) IS NOT NULL THEN
    ( SELECT TOP 1 firstName + ' ' + lastName FROM <user table> WHERE userID = RIGHT(CURRENT_USER, LEN(CURRENT_USER) - CHARINDEX('\',CURRENT_USER) ) )
    ELSE CURRENT_USER
    END
    AS RefreshUser
    ,GETDATE() AS RefreshTime
    ,MAX( f.TxDateTime ) AS LastDate
    FROM
    <fact table> f
    The user table did not have the domain prefix <domain>\, so that's what the string operations are dealing with in this definition.
    As for how I implemented in Power Pivot, I just created a table that wasn't related to anything else, and it was fed by this view. Then I threw a pivot table on the first sheet of the workbook with these items on the rows.
    It should be pretty trivial for you to implement something similar.

  • Last logon time from list of computers?

    Hello,
    I'm looking for some type of script that will query a list (c:\script\computers.txt) of computers and return the last logon date and user.
    I do not want to do this from active directory, but instead want to get the data directly from the machines. So to sum it up I need to input a list of host names (all on the network) and output a list of last logon time stamps.
    Any help is appreciated!
    Thank you,
    Brian

    Hi
    Well AD will be your best option but you can try this in a bat file:
    net user User| findstr /B /C:"Last logon"
    Hope this helps. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Firefox is using large amounts of CPU time and disk access, and I need to know how to shut down most of this so I can actually use the browser.

    Firefox is a very busy piece of software. It's using large amounts of CPU time and disk access. It puts my usage at low priority, so I have to wait for some time to be able to use my pointer or keyboard. I don't know what it uses all that CPU and disk access time for, but it's of no use to me. It often takes off with massive use of resources when I'm not doing anything, and I may not have use of my pointer for several minutes. How can I shut down most of this so I can use the browser to get my work done. I just want to use the web site access part of the software, and drop all the extra. I don't want Firefox to be able to recover after a crash. I just want to browse with a minimum of interference from Firefox. I would think that this is the most commonly asked question.

    Firefox consumes a lot of CPU resources
    * https://support.mozilla.com/en-US/kb/Firefox%20consumes%20a%20lot%20of%20CPU%20resources
    High memory usage
    * https://support.mozilla.com/en-US/kb/High%20memory%20usage
    Check and tell if its working.

Maybe you are looking for