Tuesday, November 4, 2014

Making page as non-secure page in IBM websphere commerce


Open : struts-config-ext and search for command which we need to make nonsecure/secure :
Then in set-property tag set https value = "<store_id : 0/1>
0 - Disable
1- Enable
e.g :

<action path="/LoyaltyAPI" type="com.ibm.commerce.struts.BaseAction">
            <set-property property="https" value="10151:1"/>
        </action>


To make it enable : <set-property property="https" value="10151:1"/>
 Not a https page : <set-property property="https" value="10151:0"/>

No comments:

Post a Comment