Dear Kyle Brown
Global.jsa is a file which is a event handler for
JSP pages. It has methods
1. onApplicationStart() --> which will fire when web server starts to serve the application for the first time.
2. onApplicationEnd() --> which will fire when web server end serving the application .
3. onSessionStart() ---> This method will fire when a user session starts.
4. onSessionEnd() --> This method will fire when a user session ends (invalidate).
This is file is as per the JSP 1.1 Specification. But nowhere it is documented. JRUN 3.0 Supports this file.
We are creating a database connections when a user session starts and we have to close it when the user close the session or when session times out. Global.jsa will helps you to do this task. If you have any other solution to the above problem, it is really appriciated.
I am thanking you for the response you made.
M.K.Gopinathn