I have a Spring 3 MVC servlet webservice based application which I now intend to integrate with my liferay based system. In liferay we use IPC (Inter portlet communication) to communicate between portlets.
An event is broadcasted by a portlet which is then processed by other portlets and corresponding actions are taken. This communication is currently being carried out using IPC.
I have now deployed my servlet application in Liferay in an iframe. Will it be possible for me to establish similar processing of the broadcasted event? Any solutions for portlet-servlet communication?
Thank you.