Https action in Struts

I use html:form action = "someAction" to reference the action in the struts-config file. I wanted to do this as https, but apparently I cannot replace the absolute path, for example https: //webserver/context/abc.do with someAction in html:form . Just wondering if there is a property or parameter that I can configure to submit this form to https-url?

thanks

+4
source share
1 answer

You cannot do something similar with Struts 1.x, for this you will need to use the sslext extension. Here is an example: http://www.devarticles.com/c/a/Java/Securing-Struts-Applications/7/

0
source

All Articles