I'm working on a page that does a number of includes and each of these includes implements logic that needs to report back to the page whether it was successful.
On the main page, I have something similar to:
int rendered = 0;
for(String key : items.keySet())
{
KMTreatment item = items.get(key);
request.setAttribute("INDEX", rendered);
request.setAttribute("CODE", key);
request.setAttribute("PRICE", item.Price);
pageContext.include("path-to.jsp");
HttpSession session = request.getSession();
if(session.getAttribute("RENDERED") != null)
{
rendered++;
}
if(request.getAttribute("RENDERED") != null)
{
rendered++;
}
}
Then in the included path-to.jsp file, I have something similar to:
boolean valid = true;
if(valid)
{
request.setAttribute("RENDERED", true);
HttpSession session = request.getSession();
session.setAttribute("RENDERED", true);
}
Whilst the included can read data set from the parent page using the request.getAttribute call, any data set within the included file, for some reason is not passed back to the parent (all with in the same http request).
Does anyone know of a possible solution to this? I have tried both request and session variables with no luck :(
Cheers
Gavin
pageContext.include(docs.oracle.com/javaee/1.4/api/javax/servlet/jsp/…) – Gavin Nov 30 '12 at 9:27setAttributeas I thought. I had commented out some legacy code but continued to make changes to that piece of code. D'oh. Soon as I moved thesetAttributeto the correct place, it all started working :) – Gavin Nov 30 '12 at 10:49