Fórum

How to create a post login hook in liferay 6.1?

thumbnail
Subhasis Roy, modificado 11 Anos atrás.

How to create a post login hook in liferay 6.1?

Expert Postagens: 275 Data de Entrada: 20/01/12 Postagens Recentes
Hi,

In liferay 6.0 we used to define hook inside liferay-hook.xml using <event> tag.

But I found that its not working for liferay 6.1.

liferay 6.0 code:

<hook>
<event>
<event-class>com.test.sample.MyAction</event-class>
<event-type>login.events.post</event-type>
</event>
</hook>



Can anyone please tell me how and where to define a post login hook(login.events.post) in liferay 6.1 version.
thumbnail
Jitendra Rajput, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Liferay Master Postagens: 875 Data de Entrada: 07/01/11 Postagens Recentes
In 6.1 you can do this with by over riding portal.properties ..
<portal-properties>portal.properties</portal-properties> 


Specify above property in your liferay-hook.xml
and place portal.properties inside your hook and place property related to your event .

login.events.post=com.test.sample.MyAction
thumbnail
Subhasis Roy, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Expert Postagens: 275 Data de Entrada: 20/01/12 Postagens Recentes
thanks.

But this is not working when I have integrated with CAS.

I logged in using CAS and expects my post login hook to interfere after i logged in, but hook is not working int his case.

For simple liferay login(withou CAS) , hook is working.

Can any one have any idea about this?
Petr Vašek, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Junior Member Postagens: 68 Data de Entrada: 26/06/12 Postagens Recentes
Hi Roy, You can use EXT plugin, i think it is very easy way to solution.

http://www.liferay.com/documentation/liferay-portal/6.0/development/-/ai/developing-an-ext-plugin

Petr
thumbnail
Miguel Ángel Júlvez, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Junior Member Postagens: 63 Data de Entrada: 29/03/11 Postagens Recentes
Hi Subhass,

did you get a solution?

Regards

Subhasis Roy:
thanks.

But this is not working when I have integrated with CAS.

I logged in using CAS and expects my post login hook to interfere after i logged in, but hook is not working int his case.

For simple liferay login(withou CAS) , hook is working.

Can any one have any idea about this?
thumbnail
Subhasis Roy, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Expert Postagens: 275 Data de Entrada: 20/01/12 Postagens Recentes
yes. it worked.
Bryan Kim, modificado 11 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

New Member Postagens: 3 Data de Entrada: 17/01/13 Postagens Recentes
What was the solution for this?
Hu Jun, modificado 10 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

New Member Mensagem: 1 Data de Entrada: 19/03/14 Postagens Recentes
can you tell me how to solution for it? thank you very much!
thumbnail
Subhasis Roy, modificado 10 Anos atrás.

RE: How to create a post login hook in liferay 6.1?

Expert Postagens: 275 Data de Entrada: 20/01/12 Postagens Recentes
For JSP hook we can follow as mentioned below.

Refer to attached sample JSP hooks