Ajax actions and Form Beans
Normally, we can execute a Struts actions thru Ajax like the following Javascript lines
var url = "myStrutActions.do?parm1=parrm1val&parm2=parm2val&.."
loadURL(url, AjaxTriggerFunction);
where loadURL is the Ajax function to execute the Struts actions.
My question is instead of passing literal parameters like parm1, parm2, etc. is it possible that we can pass a form bean ?
One problem with passing literal parameters is HTTP GET paramaters have limited length.
Thanks

