While hacking a Spring & Liferay prototype, I’m suddenly wondering about why during a form submission there are no parameters (not even empty or null) submitted by the form.
Turns out that I got bitten once more by the two phases of the portlet lifecycle [1] and naivly were handling form submission in the handleRenderRequest method of my controller, whereas what I really meant to say was handleActionRequest.
Turns out that I got bitten once more by the two phases of the portlet lifecycle [1] and naivly were handling form submission in the handleRenderRequest method of my controller, whereas what I really meant to say was handleActionRequest.