Richard Green

Ranch Hand
+ Follow
since Aug 25, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
1
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Richard Green

You could create a ViewHandler that checks whether a timeout has occured (session.isNew()) and if so, redirect the user to the login page with a nice error message.
15 years ago
JSF
Script should be declared within the HEAD tag within the HTML tag

[code]
<html>
<head>
<script type="text/javascript">
function function2() {
window.location.href = "http://www.mozilla.org";


}
</script>
</head>
<body>
....
</body>
</html>
16 years ago
JSF
The standard behaviour of FireFox is to share the session when you open a new tab within the same browser window. You might find this behaviour in IE7 too.
16 years ago
JSF
Have you tried debugging your filter?
16 years ago
JSF

Originally posted by Abiodun Adisa:


I meant using the current Session Bean and reinitializing it



hmmm.... make your session beans implement an interface that has reinitialize() method in it.

grab your managed bean out of the session and inovke the reinitialize method??
16 years ago
JSF
16 years ago
JSF


Written one session filter which is used to restrict the url


I do not understand. Can you paste the code here?
16 years ago
JSF

Originally posted by Harsha Jay:
I love this one error message which is common across all the languages, Eye Dee Ten Tee.

Can you figure out what this is?

[ January 09, 2008: Message edited by: Harsha Jay ]



ID10T
16 years ago

Originally posted by Sridhar Venkataraman:
Thank you for your replies and assistance.

It was stupid of me to ask this question. I just realized that after I posted it!


There is no such thing as a stupid question.
16 years ago

However it is not working.



Did you try it with "#{SessionBean1}"?

context.getExternalContext().getSessionMap().remove("#{SessionBean1}");


[ January 08, 2008: Message edited by: Richard Green ]
16 years ago
JSF