• 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

PortletSession.PortletScope value is not cleared when server is shutdown

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have set a value into PortletSession's PORTLET_SCOPE. I am able to retrieve the value correctly. But, if my portal server is shutdown, and after restarting the server, if I access the value, i am seeing the old value set before shutdown of the server. I tried the same by setting value in APPLICATION_SCOPE, and this works fine.

MyPortlet:


when "pageNum" value is 2, I shutdown the portal server, and restarted.

I logged into portal and when I access this variable, I am seeing pageNum value as "2".

If I repeat the same process, with APPLICATION_SCOPE, after restarting the server, pageNum value is "null".

Server: Tomcat 6 and Vignette Portal

Have you guys ever seen this?

thanks,
Sridhar


 
reply
    Bookmark Topic Watch Topic
  • New Topic