Looping a JavaBean through a JSP/Servlet possible?
I have a webapp that has a JSP page that shows data in an "HTML form" based on a JavaBean passed in from a Servlet. When the user submits the form (possibly with changes), I would like to be able to send this exact same JavaBean (with original data and possibly some modified data) back to the original Servlet. I can't seem to find any examples that do this. I don't want to do this at the "session or application" scope if possible. Am I correct in thinking that this is not something that can be done in "one" request scope. I would think that there are two separate requests being made here for one "loop". One request that's forwarded into the JSP, and another that's created by the form submission. Can anyone verify that this is indeed possible, and point me in the right direction. Or if there is a reason that it's not possible, please explain why. Thanks in advance.

