RE: Action as Welcome File

2002-06-26 Thread James Mitchell
truts Evangelist Struts-Atlanta, the "Open Minded Developer Network" http://struts-atlanta.open-tools.org > -Original Message- > From: Dennis Muhlestein [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 26, 2002 6:28 PM > To: Struts Users Mailing List > Subject: Re: Actio

Re: Action as Welcome File

2002-06-26 Thread Dave Bettin
Create a index.jsp and place a tag to forward to index.do. Dave --- Jerry Jalenak <[EMAIL PROTECTED]> wrote: > Is it possible to do the following? > > in web.xml.. > > > action > . > . > . > > > > a

Re: Action as Welcome File

2002-06-26 Thread Dennis Muhlestein
We use apache in from of tomcat. Because there is no index.do, we would get a directory listing (if that was turned on but it isn't because well...). Anyway, I added index.do to the list of files for apache to automatically pull up and then just made a dummy file called index.do tomcat gets the

RE: Action as Welcome File

2002-06-26 Thread Kevin . Bedell
6/2002 06:09:43 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> cc: (bcc: Kevin Bedell/Systems/USHO/SunLife) Subject: RE: Action as Welcome File Instead of that Yo

RE: Action as Welcome File

2002-06-26 Thread Rathore, Pavan
Instead of that You can make a dummy (xyz.jsp) and then in xyz.asp you can Redirect to index.do Pavan -Original Message- From: Jerry Jalenak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 3:07 PM To: '[EMAIL PROTECTED]' Subject: Action as Welcome File Is it poss

Action as Welcome File

2002-06-26 Thread Jerry Jalenak
Is it possible to do the following? in web.xml.. action . . . action *.do index.do I am trying to get index.do to run first