In my ProcessAction, I am returning a StringBuffer from a method and converting it to a
String and then setting it with response.setRenderParameter("param", String) so that I can access it in my doView. However, it seems that the response "bucket" cannot accept all the data in my String.
If I remove some of the data and pass it into the response.setRenderParameter, I have success. So I got creative and divided the data into 2 StringBuffers(sbA sbB), converted each to a string (strA strB) and set them as 2 different RenderParameters ... that did not work either. The error I get in both cases is a blank screen - the page and the 2 portlets on that page do not render.
Is there a limit to the size of the string I can set into the response.setRenderParameter?