0 Replies Latest reply on Jul 8, 2006 9:38 AM by anurudh

    How to send the request from jsp to portlet

    anurudh

      Please tell how to send a request from jsp to portlet. I want to execute the processAction() method of portlet. I have created a simple login portlet with the help of jsp. Now after submitting the username and password i want to send the request from jsp to portlet. The way i tried is like

      <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %>
      <portlet:defineObjects/>

      <portlet:actionURL var="actionUrl" >
      <portlet:param name="action" value="hello"/>
      </portlet:actionURL>


      And also tell do we need to write something specific in var, name and value part. If possible then provide some sample code.

      Thanks