I''m using the sslext struts extension to switch from non ssl to ssl..
however i cant seem to get it working.
I use the url http://localhost:8080/MyApp to go to the welcome page.. and a
couple of pages later i need to switch to Https..

i have the jars in my /lib directory and i've made the following changes to
my struts-config.xml
what am i missing?

-----------
<action-mappings type="org.apache.struts.config.SecureActionConfig">

<action path="/listItems"
type="com.joe.bloggs.ListItemsAction"
name="listItemsForm"
scope="request"
input="/chooseItems.jsp">
<set-property property="secure" value="true"/>
<forward name="success" path="/payment.jsp"/>
</action>
<action-Mappings/>

<plug-in className="org.apache.struts.action.SecurePlugIn">
<set-property property="httpPort" value="8080"/>
<set-property property="httpsPort" value="8443"/>
<set-property property="enable" value="true"/>
</plug-in>




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to