I'm still a newbie with Struts, but farther along than I was a week ago. I'm still puzzled about how to get includes to work.
I've got an application with a 'master/detail' relationship. We have documents and each document has zero or more replies. I want to be able to display the details of the document and list all its replies, all on a single page. Ideally, I'd like one JSP to display a single document's details so that page fragment can be used in various places, and one JSP to display the list of replies for the same reason. Outside of Struts, I'd create those page fragments, then create a JSP that has two <jsp:includes.../>. But if I do that in Struts I get an error that the response has already been committed. I see that I can set up an Action to "include," but if that's the way to do this, how do I specify where in the page (the response) that include occurs? And how do I do more than one for one request/response? Dave