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:
orCode:<set name="reportid" value="requestParameters.reportid" />
etc to my flow definitions and it didn't seem to work. I also tried just adding this to the jsp directly:Code:<evaluate expression="externalContext.getRequestParameterMap().get('reportid')" result="flowScope.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).Code:<%= request.getParameter("reportid") %>
Any ideas anyone?


Reply With Quote