Re: Switching between http and https in struts-config

2005-06-13 Thread Frank W. Zammetti
You can, I believe, have fully-qualified URLs in forward paths... One thing you might be able to do is have mappings something like: Then, in your Action, do something like this: boolean isSecure = true; if (isSecure) { ActionForward af = mapping.findForward("secured_forward"); ActionForw

RE: Switching between http and https in struts-config

2005-06-13 Thread Mark Benussi
Yep you need to use http://sslext.sourceforge.net/ -Original Message- From: Dan Tenenbaum [mailto:[EMAIL PROTECTED] Sent: 13 June 2005 20:45 To: user@struts.apache.org Subject: Switching between http and https in struts-config Hi, I'm new to the list. I'm working on a webapp

Switching between http and https in struts-config

2005-06-13 Thread Dan Tenenbaum
Hi, I'm new to the list. I'm working on a webapp where some of the pages should be accessed through HTTPS and others through HTTP. For example, login and registration need to be secure, but once the registration is done and we go to the user home page, we can go back to the nonsecure site. All p