• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

which is suitable place to use session tracking methods?

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have one doubt..

There are four methos in session tracking. I know the concept of them.
But i don't know in which case we can use them.
When will we decide that this tracking method is best for this scenario?

Can you please tell me detaily?


Thanks
arulraj
 
Ranch Hand
Posts: 502
jQuery Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In HTTP, Three ways,

1. URL Rewriting and Cookie - This will be taken care by container. If Cookie is disabled, Container will automatically start using URL Writing. Only thing you need to do is, what ever URL in your JSP make sure it is encoded URL by calling method below,



2. Hidden Variable - not a suggestable way of doing, as you have already have good methods to go.

HTTPS: I'm not sure about this. I think when you want secure communication, you can use this.

hth,
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic