RE: Calling JSPs directly

2004-02-13 Thread Andy Engle
Hi all, Thanks for sharing your thoughts about my question from earlier today. I am going to heed your advice and go ahead with accessing my JSPs through actions. You've given me some new ideas on how I can make my application better, which I appreciate. And I'm glad that I finally found some d

RE: Calling JSPs directly

2004-02-13 Thread Robert Nocera
Andy, Depending on the complexity of the application, you may want to consider having the user call an action first, not a jsp. The action can do any setup for the jsp page, such as retrieving any collections you may need to populate dropdown lists in the page. Even if the action does nothing ri

Re: Calling JSPs directly

2004-02-13 Thread Christian Bollmeyer
On Friday 13 February 2004 18:10, Andy Engle wrote: > Hi all, Hi Andy, > I'm working with a web application in which I have multiple pages of > information, currently located in PHP files. I want to convert these > PHP files into JSPs, and then make them available to be directly > called within

RE: Calling JSPs directly

2004-02-13 Thread Wendy Smoak
> From: Andy Engle [mailto:[EMAIL PROTECTED] > I'm wondering if making JSPs available to the user in this manner is a > poor practice, and if so, what would be a better way of doing it? > Furthermore, will I run into any problems with the Struts custom tags > or tiles by taking this approach? It