RE: Setting initial page to be an action

2001-02-01 Thread Winters, Jason
rella [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 31, 2001 7:39 PM To: [EMAIL PROTECTED] Subject: Re: Setting initial page to be an action I tried this a couple of days ago but the results back where a directly listing. I also had to add an entry in my action.xml to handle "index"

Re: Setting initial page to be an action

2001-02-01 Thread Craig R. McClanahan
"Winters, Jason" wrote: > I'm trying to setup my application so that the initial page is an action. > When the user enters a URL like this, http://server/myapp they should be > sent to http://server/myapp/index.do. At the moment, they get forwarded to > http://server/myapp/index.jsp which crashe

Re: Setting initial page to be an action

2001-01-31 Thread renzo estrella
I tried this a couple of days ago but the results back where a directly listing. I also had to add an entry in my action.xml to handle "index" action but it still returned the directory listing. While specifying index.do does give the correct result. Perhaps this behavior is due to weblogic5.1

Re: Setting initial page to be an action

2001-01-30 Thread Ted Husted
If a JSP requires something created by an action, you can test for it first, and then forward to the action if it is missing, e.g. I usually put these after the taglib declarations, but before the HTML. *** REPLY SEPARATOR *** On 1/30/2001 at 5:08 PM Winters, Jason wrote: I

Re: Setting initial page to be an action

2001-01-30 Thread Mishkin Berteig
You can create an index.html file which contains something like this: window.location.href="/frontpage.do"; which works for both javascript and non-javascript browsers. This is what we use on our system. Regards, Mishkin. "Winters, Jason" wrote: > I'm trying to setup my application s