You feedback is appreciated
Name:
E-mail Address:
Homepage:
Subject:

All Information will be published. There is no privacy option yet. Sorry.

All fields are optional (but a comment is expected). HTML is allowed but please be careful.
For avoiding posts using a different identity I log certain information like IP Adress, Hostname, Referer Data aso.
All data will be kept private and not reused in any kind.

03.03.2011 Henning Heinz  
XPages - What happens to your sessionScope if you logout on the web?

Short Answer
Nothing

Your sessionScope remains. This may cause confusion if you have several logins on a Domino server and store data in sessionScope.

Maybe not a typical use case but I had a case where Power Users switch users for testing functionality. They store UNIDs for caching in the sessionScope.

Solution:

Custom Logout function and clearing variables. A nice example can be found on the blog from Tommy Valand at
http://dontpanic82.blogspot.com/2010/06/xpages-simple-function-to-clear-scoped.html

Update

The LDD Wiki says that a logout should clear sessionScope which it did not in this case.
In some way this makes sense as you can have a sessionScope whether being anonymous or logged-in but I am not sure if this is a bug then.


Comment:
2