Hi, > Our need for this is that we have a java application that is launched >remotely by a control web-page. As long as the remove application is >active we do not want to the session that launched it to die. >Unfortunately these were the requirements given to me, I just need to see >if it is possible.
You should probably scream a bit at the person who gave you the requirements ;) What about setting session-timeout to -1 in your web.xml? That means sessions won't timeout due to inactivity, and will become invalid only if you explicitly invalidate them. Then you don't have to worry about a kludge keep-alive solution. Yoav This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
