I use Liferay portlet bundle 6.2 (Tomcat) and Liferay IDE(eclipse). I created an Liferay Plugin Project. I save some data by using Portlet Preferences in this project and I created an button its calls "Search". My question is, how I can invoking an another Liferay Plugin Project, when I press the Button "Search", which is created in this first Liferay Plugin Project? Later I will retrieve this data that I saved by first project from the second Liferay Plugin project.
In follow is the search.jsp, where I created tis Button Search
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<%@ taglib uri="http://alloy.liferay.com/tld/aui" prefix="aui" %>
<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>
<portlet:defineObjects />
<aui:button-row cssClass="guestbook-buttons">
<portlet:renderURL var="addEntryURL">
<portlet:param name="mvcPath" value="/html/voda/edit_entry.jsp"></portlet:param>
</portlet:renderURL>
<aui:button onClick="<%= addEntryURL.toString() %>" value="Add Entry"></aui:button>
<portlet:renderURL var="showURL">
<portlet:param name="mvcPath" value="/html/voda/show_entries.jsp"></portlet:param>
</portlet:renderURL>
<aui:button onClick="<%= showURL.toString() %>" value="Show"></aui:button>
<portlet:renderURL var="searchURL">
<portlet:param name="mvcPath" value="/html/voda/search.jsp"></portlet:param>
</portlet:renderURL>
<aui:button onClick="<%= searchURL.toString() %>" value="Search"></aui:button>
invoking another liferay project
? Do you mean onclick of button in first portlet you want to fetch data from second portlet and show again in your first portlet? Or you want to show the JSP of second portlet in your first portlet on click of the button? Or is there something else you have in mind. And it would be helpful to know why you would want to do something like this instead of having a single portlet. Thanks – Prakash K