Re: [Resin-interest] Calling a JSP on Start Up (likeload-on-startup)

2007-11-21 Thread Daniel Lopez
In any case, what you would probaby get with that setting would be for Resin to call the init() method of the servlet generated from the JSP, not making a ficticious call to your JSP as for that you need a request, a response to send back to the browser etc. If you don't have such things (r

Re: [Resin-interest] Calling a JSP on Start Up (likeload-on-startup)

2007-11-21 Thread Aaron Freeman
I just want to call a JSP at startup, where I can use JSTL to make some database calls, set some application variables and populate an application scope hashmap. I don't want to code the logic in a servlet, because I want a non-Java programmer to be able to modify the JSP page in the future. Aar

Re: [Resin-interest] Calling a JSP on Start Up (like load-on-startup)

2007-11-21 Thread Eric Kreiser
what are you trying to do? I would think you would be coding startup type processes in a ServletContextListener not in Servlet's or JSP's Aaron Freeman wrote: > Is there any way to have Resin call a JSP when it first fires up, similar to > how you can call a servlet: > > I saw somebody doing t

[Resin-interest] Calling a JSP on Start Up (like load-on-startup)

2007-11-21 Thread Aaron Freeman
Is there any way to have Resin call a JSP when it first fires up, similar to how you can call a servlet: I saw somebody doing this with Resin 2.x, but it doesn't do anything for Resin 3.0.22: login_jsp_sname /login.jsp 1 So I am guessing the tag has been deprecated, but for the life of m