• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

session management in servlets

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

how to manage the session of a client other that
Cookies and URL Rewriting technique.
 
Ranch Hand
Posts: 163
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by ravi indra:
hi,

how to manage the session of a client other that
Cookies and URL Rewriting technique.



Why? If those are the tools that the servlet API gives you, why are they not sufficient?

I can see why cookies might not be desirable, because some clients won't accept cookies, but why isn't URL rewriting acceptable?
 
Michael Duffy
Ranch Hand
Posts: 163
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Michael Duffy:


Why? If those are the tools that the servlet API gives you, why are they not sufficient?

I can see why cookies might not be desirable, because some clients won't accept cookies, but why isn't URL rewriting acceptable?



Perhaps more importantly, why would you want to write your own way and maintain it when the servlet API gives you two ways to do it out of the box?
 
reply
    Bookmark Topic Watch Topic
  • New Topic