RE: accessing static html from struts-config.xml

2003-10-22 Thread Rabago, Hubert
would do the same thing. > > > -Original Message- > From: Turansky, Mark [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 22, 2003 1:46 PM > To: Struts Users Mailing List > Subject: RE: accessing static html from struts-config.xml > > > I just tried (and

RE: accessing static html from struts-config.xml

2003-10-22 Thread mohan
age- > From: Turansky, Mark [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 22, 2003 1:46 PM > To: Struts Users Mailing List > Subject: RE: accessing static html from struts-config.xml > > > I just tried (and failed) using a fully qualified URL as the > ActionForwar

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
, 2003 2:50 PM To: Struts Users Mailing List Subject: RE: accessing static html from struts-config.xml or use http://www.mysite.com"; redirect="true"/> which would do the same thing. -Original Message- From: Turansky, Mark [mailto:[EMAIL PROTECTED] Sent: Wednesday, Oct

RE: accessing static html from struts-config.xml

2003-10-22 Thread Rabago, Hubert
or use http://www.mysite.com"; redirect="true"/> which would do the same thing. -Original Message- From: Turansky, Mark [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 1:46 PM To: Struts Users Mailing List Subject: RE: accessing static html from struts-c

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: RE: accessing static html from struts-config.xml No the reference to the path in the section does not work. I am not sure how to use the respons

RE: accessing static html from struts-config.xml

2003-10-22 Thread Rabago, Hubert
To: [EMAIL PROTECTED] Subject: RE: accessing static html from struts-config.xml No the reference to the path in the section does not work. I am not sure how to use the response.redirect method. Do we put this method in the execute method of the LogoffAction? or do we make a new method called

RE: accessing static html from struts-config.xml

2003-10-22 Thread mohan
No the reference to the path in the section does not work. I am not sure how to use the response.redirect method. Do we put this method in the execute method of the LogoffAction? or do we make a new method called public void redirect(HttpServletRequest){ response.redirect("http://localhost/xyz

RE: accessing static html from struts-config.xml

2003-10-22 Thread Turansky, Mark
I believe that you are not forced to use a relative URL. You can put "http://www.mysite.com/index.html"; as the Forward path and it should work just fine. If, for whatever reason, the Forward to an absolute URL does not work, you can always use response.redirect(actionForward.getPath()) in yo