Results 1 to 5 of 5

Thread: What is the common mechanisms used for session tracking?

  1. #1
    Join Date
    Apr 2008
    Posts
    22

    What is the common mechanisms used for session tracking?

    Hi,

    What is the common mechanisms used for session tracking?

    Thanks in advance.
    GunPoint

  2. #2
    Join Date
    May 2008
    Posts
    31

    Re: What is the common mechanisms used for session tracking?

    Here are the common mechanisms used for session tracking.

    Cookies
    SSL Sessions
    and URL Rewriting.

  3. #3
    Join Date
    May 2008
    Posts
    39

    Re: What is the common mechanisms used for session tracking?

    Session tracking

    Session tracking (for those who haven't heard of it) is a concept which allows you to maintain a relation between 2 successive requests made to a server on the Internet. Whenever a user browses any website, he uses HTTP (the underlying protocol) for all the data transfers taking place. This ofcourse is not important to the user. But it is for you as a programmer. HTTP is a stateless protocol. When a user requests for a page the server returns that web page to the user. When the user once again clicks on a new link the server once again sends the new page that was requested. The server (because of the use of HTTP as the underlying protocol) has no idea that these 2 successive requests have come from the same user. The server is not at all bothered about who is asking for the pages. All it does it return the page that has been requested. This is exactly what stateless means. There is no connection between 2 successive requests on the Internet.

  4. #4
    Join Date
    Apr 2008
    Posts
    22

    Re: What is the common mechanisms used for session tracking?

    Please go through this PDF file on Session tracking.

    http://www.javapassion.com/j2ee/SessionTracking.pdf

    I hope this helps you.

  5. #5
    Join Date
    May 2008
    Posts
    41

    Re: What is the common mechanisms used for session tracking?

    Session

    A Session refers to all the request that a single client makes to a server. A session is specific to the user and for each user a new session is created to track all the request from that user. Every user has a separate session and separate session variable is associated with that session. In case of web applications the default time-out value for session variable is 20 minutes, which can be changed as per the requirement.

    HTTP is stateless protocol and it does not maintain the client state. But there exist a mechanism called "Session Tracking" which helps the servers to maintain the state to track the series of requests from the same user across some period of time.

    Session Tracking

    HTTP is stateless protocol and it does not maintain the client state. But there exist a mechanism called "Session Tracking" which helps the servers to maintain the state to track the series of requests from the same user across some period of time.

    Mechanism for Session Tracking are:
    • Cookies
    • URL rewriting
    • Hidden form fields
    • SSL Sessions


    I hope this helps you.

Similar Threads

  1. IP tracking.
    By falloutboy in forum Networking & Security
    Replies: 2
    Last Post: 11-06-2011, 10:27 AM
  2. Replies: 4
    Last Post: 17-01-2011, 11:14 AM
  3. Replies: 4
    Last Post: 24-12-2010, 07:58 AM
  4. What is Data Transport protocol mechanisms
    By Ander K in forum Networking & Security
    Replies: 5
    Last Post: 05-12-2010, 12:51 AM
  5. Replies: 3
    Last Post: 31-07-2009, 01:09 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,716,130,464.15403 seconds with 16 queries