• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Autodesk MapGuide Enterprise Developer

    Reply
    Valued Contributor
    Posts: 72
    Registered: ‎04-12-2012

    session timeout for AIMS2013

    322 Views, 1 Replies
    02-20-2013 08:21 AM

    Hi,

     

    when we login Infrastructure Map Server - Site Administrator--> Manager Servers-->Configure Services, we can set session timeout(seconds): 1200. I did a test, set session timeout 60 seconds, then after 60seconds, there's nothing affect for my map dispaly, widgets functions. Can I set somewhere, for example I can close the Map window or Close the Application to match my setting in .NET Global file setting: session timeout, web will log out? Thank you.

    Please use plain text.
    Mentor
    Posts: 238
    Registered: ‎10-06-2008

    Re: session timeout for AIMS2013

    02-21-2013 05:21 PM in reply to: swimming123

    You could inject the following javascript into your page

     

    window.setTimeout(<?= $timeout ?> * 1000, function() {
        alert("Your session has ended. Goodbye!");
        window.close();
    });

    Where $timeout is the value of MgSite.GetSessionTimeout()

     

    - Jackie

    Please use plain text.