I think this is what you are looking for.  In the doView method in your 
portlet, do this:

  protected void doView(RenderRequest request,
  |       RenderResponse response) throws PortletException, IOException{
  |     . . .
  |     response.setContentType("text/html");
  |     PortletRequestDispatcher prd =
  |       getPortletContext().getRequestDispatcher("myTask.jsp");
  |     prd.include(request, response);
  |   }


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3987021#3987021

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3987021
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to