Redirect the action to another struts.xml action:
<action name="CheckLogin" class="LoginS" method="checkLogin"> <result name="input" type="redirectAction"> <param name="actionName">SectorDisplay</param> <param name="branch_id">${branch_id}</param> </result> </action>
Parameter
sent as branch_id but its on url and it shows how
http:
I think this is not like POST, its GET.
I donβt want to show the parameter by URL, is there any way to hide it or how to place it in action?
Thanks..
source share