Details
-
Bug
-
Status: Closed
-
Resolution: Won't Fix
-
6.1.1 CE GA2
-
None
Description
From a portlet action when you use the UploadRequest(PortalUtil.getUploadPortletRequest(request)) can only be used one time.
The second time you cant find the parameters...
Sample:
ParamUtil.getString(PortalUtil.getUploadPortletRequest(request),"parameterName"); //Correct values
ParamUtil.getString(PortalUtil.getUploadPortletRequest(request),"parameterName"); //NULL
I had this problem because i have some methods in ActionUtil for getting same parameters from request... so, i change my methods to expect an UploadRequest not the ActionResquest... so this way i only get the UploadRequest one time.