David H Nebinger:
Well, it's not quite elegant, but you do have a portlet session available via both of the request objects...
The action could populate the portlet session and the resource request can get the session values...
I am not crazy about this option as you still have to submit the form (to store the values) before you could submit the resource request.
The better method, IMHO, would be to use some fancy javascript code. Use JS to grab the form values and stuff them as parameters into the resource request manually. You're going to want to look at the actual rendered content of the resource tag to see how you have to manipulate it in Javascript, and you'll also have to deal w/ the portlet namespace when grabbing form field values...
And I'm not so crazy about this implementation either.
It's cases like this that make me glad I'm using Vaadin...
Thanks David, you seems to be a ghost of the forum lol jk
I thought about js solution, not really a problem because i used to do something more crazy than that, but it's not beautiful you know. We always want to code in the best way, not just simply solve the problem.
I will give it a try with portlet session to see how.