Foren

[PortletRequestProcessor:499] 86 does not have any paths specified

Luca Lupo, geändert vor 11 Jahren.

[PortletRequestProcessor:499] 86 does not have any paths specified

Regular Member Beiträge: 106 Beitrittsdatum: 01.10.12 Neueste Beiträge
Hi Guys,

I'm in configuration of my portlet where I have a search container, every action that I do (pagination, ordering, etc, ) causes this error [PortletRequestProcessor:499] 86 does not have any paths specified.

Any Idea?

Thanks

Luca
thumbnail
Kailash Yadav, geändert vor 10 Jahren.

RE: [PortletRequestProcessor:499] 86 does not have any paths specified

Regular Member Beiträge: 211 Beitrittsdatum: 18.10.11 Neueste Beiträge
Question is old but may be answer is useful for someone, use liferay-portlet:actionURL instead of portlet:actionURL :

<liferay-portlet:actionurl portletconfiguration="true" var="configurationURL">
	<portlet:param name="<%=Constants.CMD %>" value="<%=Constants.UPDATE %>" />
</liferay-portlet:actionurl>

<aui:form action="<%= configurationURL %>" method="post" name="fm">
	<aui:input name="preferences--portletPageType--" type="radio" value="Supervisor" label="Supervisor"></aui:input>
	<aui:input name="preferences--portletPageType--" type="radio" value="Agent" label="Agent"></aui:input>
	<aui:button type="submit" value="Save"></aui:button>
</aui:form>
thumbnail
Anil T, geändert vor 8 Jahren.

RE: [PortletRequestProcessor:499] 86 does not have any paths specified

Expert Beiträge: 313 Beitrittsdatum: 14.01.12 Neueste Beiträge
Thanks Kailash for your reply. It saved me a lot of time.
shiv darshan, geändert vor 6 Jahren.

RE: [PortletRequestProcessor:499] 86 does not have any paths specified

New Member Beiträge: 10 Beitrittsdatum: 05.10.17 Neueste Beiträge
create Your url like this and pass the data by portletNamespace without namespace you will not get value in controller
<liferay-portlet:resourceURL portletName="abc_WAR_abcportlet" var="resourceURL"></liferay-portlet:resourceURL>

data:{
_abc_WAR_abcportlet_cmdValue:'ab c',
_abc_WAR_abcportlet_projectId:projectId,

},