As I recently posted to a similar
thread:
Hello,
Struts actually works very well with Ajax techniques, as long as you play by Struts' rules.
Struts will automatically populate an ActionForm from the query appended to an Ajax request. For example, if the URL of your Ajax request is ajaxRequest.do, you can append a query
string like this:
ajaxRequest.do?parm1=hello&parm2=goodbye
If you have an ActionForm with properties parm1 and parm2, they will be automatically populated with the values hello and goodbye, respectively. The Action can then process the request normally and then return a response.
The Taconite framework (taconite.sf.net) integrates very well with Struts because it will automatically build the query string for you.
Ryan Asleson<br />Co-Author, <a href="http://www.amazon.com/Foundations-Ajax-Foundation-Ryan-Asleson/dp/1590595823/sr=1-1/qid=1158926537/ref=pd_bbs_1/002-7412154-2924860?ie=UTF8&s=books" target="_blank" rel="nofollow">Foundations of Ajax</a> and <a href="http://www.amazon.com/Pro-Ajax-Java-Frameworks/dp/1590596773/ref=sr_11_1/002-7412154-2924860?ie=UTF8" target="_blank" rel="nofollow">Pro Ajax and Java Frameworks</a><br /><a href="http://taconite.sf.net" target="_blank" rel="nofollow">Taconite</a> Lead Developer