Forums de discussion

Ipc

subrat kumar mishra, modifié il y a 11 années.

Ipc

New Member Publications: 13 Date d'inscription: 03/09/12 Publications récentes
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, modifié il y a 11 années.

RE: Ipc

Expert Publications: 483 Date d'inscription: 31/07/10 Publications récentes
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, modifié il y a 11 années.

RE: Ipc

Regular Member Publications: 191 Date d'inscription: 25/11/11 Publications récentes
Thats nice Subhash!!
thumbnail
David H Nebinger, modifié il y a 11 années.

RE: Ipc

Liferay Legend Publications: 14915 Date d'inscription: 02/09/06 Publications récentes
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, modifié il y a 11 années.

RE: Ipc

Expert Publications: 310 Date d'inscription: 07/07/10 Publications récentes
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, modifié il y a 11 années.

RE: Ipc

New Member Publications: 13 Date d'inscription: 03/09/12 Publications récentes
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, modifié il y a 11 années.

RE: Ipc

Liferay Master Publications: 978 Date d'inscription: 03/01/10 Publications récentes
If I remember correctly the Liferay in Action book introduces IPC rather well
thumbnail
rehan khan, modifié il y a 10 années.

RE: Ipc

New Member Publications: 7 Date d'inscription: 31/01/13 Publications récentes
hi,
Another example for ipc you can check on following
attuneinfocom/how-create-ipc-portlet-liferay-611-ga2-0