Skip to main content
Participating Frequently
May 20, 2009
Question

how to perform this?by copying the IE URL of successfully logged in to another IE Browser and the user still logs in which is wrong.

  • May 20, 2009
  • 2 replies
  • 757 views

  I have a problem. the user had successfully logged in in an IE Browser. Then I copy the URL of the IE
  to another IE Browser. The output must be, the browser will ask the user to log in again which is correct.
  In my application, the output was still logged in which is wrong.

  Kindly help

    This topic has been closed for replies.

    2 replies

    Inspiring
    May 21, 2009

    jepoy1 wrote:

      I have a problem. the user had successfully logged in in an IE Browser. Then I copy the URL of the IE
      to another IE Browser. The output must be, the browser will ask the user to log in again which is correct.
      In my application, the output was still logged in which is wrong.

      Kindly help

    When you copy the URL from IE browser 1 to IE browser 2 are both instances of IE on the same PC?

    Inspiring
    May 20, 2009

    How are you handling authentication for your site?  Are there parameters in the URL querystring, such as CFID, CFTOKEN, or JSESSIONID, that are used to indicate a logged in user's session?

    jepoy1Author
    Participating Frequently
    May 21, 2009

    I have the Application.cfm

    <cfapplication sessionmanagement="yes" clientmanagement="yes" name="Employee"
    loginstorage="Session" sessiontimeout="#CreateTimeSpan(0,0,10,0)#">

    I dont use parameter such as CFID and CFTOKEN for my code.

    Is it possible to do it without using this parameter?

    Can you give me simple code that if it is successfully logged in, then it will perfom that the browser will ask you to log in again.

    Thank you for the reply and knowledge.

    jepoy1