serveResource of MVCPortlet is not fetching formdata.

Jamie Sammons, modified 3 Years ago. New Member Posts: 11 Join Date: 10/25/12 Recent Posts

For ajax call I am sending two parameters a form data.

In the serveResource I am getting the formdata like :

ParamUtil.getBoolean(request, "cookieConsent")

ParamUtil.getLong(request, "cookieConsentDate")

 

I am receiving only null value. Thanks in advance. 


 

thumbnail
Durai pandian, modified 3 Years ago. Liferay Master Posts: 593 Join Date: 8/8/14 Recent Posts

 Hi,

You may need to prepend the parameter name with PortletNamespace before submitting to fetch it in ParamUtil. 

//Using taglib
<portlet:namespace/>cookieConsent=false
//Using Scriptlet      
<%=renderResponse.getNamespace()%>

 or 

directly get it from Request Object

request.getParameter("cookieConsent");