Fórum

Ipc

subrat kumar mishra, modificado 11 Anos atrás.

Ipc

New Member Postagens: 13 Data de Entrada: 03/09/12 Postagens Recentes
pls send me a ipc session based exampple,i send two portlet pls cheak it reply me not getting th out put
thumbnail
Harish Kumar, modificado 11 Anos atrás.

RE: Ipc

Expert Postagens: 483 Data de Entrada: 31/07/10 Postagens Recentes
Hi Subrat,

To share session attribute between different portlets you can make use of following property

session.shared.attributes=COMPANY_,LIFERAY_SHARED_,org.apache.struts.action.LOCALE,PORTLET_RENDER_PARAMETERS_,PUBLIC_RENDER_PARAMETERS_POOL_,USER_


To set attribute -

actionRequest.getPortletSession().setAttribute("LIFERAY_SHARED_session_attr", "Value",	PortletSession.APPLICATION_SCOPE);


To get attribute -

actionRequest.getPortletSession().getAttribute("LIFERAY_SHARED_session_attr",PortletSession.APPLICATION_SCOPE)


HTH
thumbnail
Mazhar Alam, modificado 11 Anos atrás.

RE: Ipc

Regular Member Postagens: 191 Data de Entrada: 25/11/11 Postagens Recentes
Thats nice Subhash!!
thumbnail
David H Nebinger, modificado 11 Anos atrás.

RE: Ipc

Liferay Legend Postagens: 14919 Data de Entrada: 02/09/06 Postagens Recentes
Subhash Pavuskar:
I hope This code may help you to understand IPC pls Find the attachment.


Please do not refer to this as IPC, because it's not.

IPC, in the portlet world, has a specific meaning and is based upon events and listeners at the portlet level.

All you've done in this code is set a variable in the portlet session's application scope. This is nothing more than sharing data, and is very much bad practice (want to change the portlet key? Have to touch all of your code that's using it).
thumbnail
Rahul Pande, modificado 11 Anos atrás.

RE: Ipc

Expert Postagens: 310 Data de Entrada: 07/07/10 Postagens Recentes
David H Nebinger:
Subhash Pavuskar:
I hope This code may help you to understand IPC pls Find the attachment.


Please do not refer to this as IPC, because it's not.

IPC, in the portlet world, has a specific meaning and is based upon events and listeners at the portlet level.

All you've done in this code is set a variable in the portlet session's application scope. This is nothing more than sharing data, and is very much bad practice (want to change the portlet key? Have to touch all of your code that's using it).



I agree with David. This is just session sharing.

Please refer this link

NOTE : In the given link also they are considering session sharing as IPC, which is not correct.
subrat kumar mishra, modificado 11 Anos atrás.

RE: Ipc

New Member Postagens: 13 Data de Entrada: 03/09/12 Postagens Recentes
Hello ur provided example is work within the same project two portlet communication,
But i need example of two portlets from different project communication
pls reply me
thumbnail
Jack Bakker, modificado 11 Anos atrás.

RE: Ipc

Liferay Master Postagens: 978 Data de Entrada: 03/01/10 Postagens Recentes
If I remember correctly the Liferay in Action book introduces IPC rather well
thumbnail
rehan khan, modificado 10 Anos atrás.

RE: Ipc

New Member Postagens: 7 Data de Entrada: 31/01/13 Postagens Recentes
hi,
Another example for ipc you can check on following
attuneinfocom/how-create-ipc-portlet-liferay-611-ga2-0