• 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

Concurrent access of website

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

When i login into my website i populate session variables.but when i try to access the site concurrently by opening more than one browser,only one browser shows the success page.
For other browsers it is not getting the session object.i have tried using the loginForm as session in struts-config.xml also.please suggest a solution.

Thanks & Regards
Ramji Srinivasan
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Each time a new browser window is opened, and the website is accessed from within each of them separately; each browser gets its own session

BUT, if say using Internet Explorer, you access to the site then execute an CTRL - N(ew) these two pages will share the same session.

By the way, this has nothing to do with Struts, but with general Servlets...
[ January 18, 2006: Message edited by: Yilmaz Mete ]
 
Die Fledermaus does not fear such a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic