Fórumok

The requested resource (/jsf1/PortletServlet/invoke) is not available

hamid sol, módosítva 17 év-val korábban

The requested resource (/jsf1/PortletServlet/invoke) is not available

Junior Member Bejegyzések: 49 Csatlakozás dátuma: 2006.09.14. Legújabb bejegyzések
Hello,
i managed to deploy my jsf portlet and it was registered successfully. But on starting the portlet i get a
"The requested resource (/jsf1/PortletServlet/invoke) is not available" within my portlet.
What do i miss?
any idea? thanks
huali qiu, módosítva 16 év-val korábban

RE: The requested resource (/jsf1/PortletServlet/invoke) is not available

New Member Bejegyzések: 3 Csatlakozás dátuma: 2007.01.31. Legújabb bejegyzések
I got the problem also.

Any idea for this?
thumbnail
Vikas R Khengare, módosítva 14 év-val korábban

RE: The requested resource (/jsf1/PortletServlet/invoke) is not available

Junior Member Bejegyzések: 58 Csatlakozás dátuma: 2008.08.01. Legújabb bejegyzések
Hi

You need to make entry in web.xml about the portlet that you have added newly

I am sure you have make the entries in liferay-display.xml, liferay-portlet.xml and portlet.xml. But when we are adding portlet in exsting plugin we need to make entry in WEB.XML also
eg.
<servlet>
<servlet-name>WorkspaceAdministrator</servlet-name>
<servlet-class>com.liferay.portal.kernel.servlet.PortletServlet</servlet-class>
<init-param>
<param-name>portlet-class</param-name>
<param-value>com.aikon.web.portlet.WorkspaceAdministratorPortlet</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>WorkspaceAdministrator</servlet-name>
<url-pattern>/WorkspaceAdministrator/*</url-pattern>
</servlet-mapping>


Thank you

regards
Vikas K
thumbnail
Henrique Simoes de Andrade, módosítva 13 év-val korábban

RE: The requested resource (/jsf1/PortletServlet/invoke) is not availabl

Regular Member Bejegyzések: 165 Csatlakozás dátuma: 2010.04.30. Legújabb bejegyzések
This is an old post, but... helped me a lot! emoticon

Is there another way to do it in Liferay 6.x?

Thanks!
thumbnail
Enrique Valdes Lacasa, módosítva 9 év-val korábban

RE: The requested resource (/jsf1/PortletServlet/invoke) is not available

Junior Member Bejegyzések: 92 Csatlakozás dátuma: 2014.07.29. Legújabb bejegyzések
Quoting from the follwoing link:http://xcafebabe.blogspot.com/2013/07/liferay-error-requested-resource-my.html , this might be a solution. It is working for me.

"...remove any special characters (like whitespaces, underscores and yes, even the '-' characters) from any of the <portlet-name> attributes. And yeah, you have to do that in a lot of places such as the liferay-display.xml, liferay-portlet.xml and portlet.xml files."
thumbnail
I-A Kotopoulos, módosítva 8 év-val korábban

RE: The requested resource (/jsf1/PortletServlet/invoke) is not available

Junior Member Bejegyzések: 44 Csatlakozás dátuma: 2014.01.14. Legújabb bejegyzések
I have the same problem. The suggestion is to remove the '-' from any portlet name? In which files? Isn't there a more safe solution? Does updating the web.xml file apply for the same purpose?