Hi,

I'm trying to read request parameters using a portlet spring webflow, so that I can send an email to my users which they can click on and e.g. do some business functionality (
HTML Code:
http://myportalapp/webflow?reportid=12
)

I tried adding in various combinations of:

Code:
<set name="reportid" value="requestParameters.reportid" />
or

Code:
<evaluate expression="externalContext.getRequestParameterMap().get('reportid')" result="flowScope.reportid" />
etc to my flow definitions and it didn't seem to work. I also tried just adding this to the jsp directly:

Code:
<%= request.getParameter("reportid") %>
It also returned null. It seems that the issue is something related to portlets and there is a post here showing how one might access request parameters using a custom websphere porlet (http://wpcertification.blogspot.com/...-url-from.html). However, our portlet uses webflow so I don't think this option is available for us (also we aren't using websphere).

Any ideas anyone?