Hi Juan,

You have to use the PortletRequestDispatcher interface in your portlet. See the chapter "Dispatching Requests to Servlets and JSPs" in the Portlet Specification 1.0 :

http://jcp.org/aboutJava/communityprocess/review/jsr168/

an example of some code you can use in the doView of your JSP portlets::

String path = "/raisons.jsp?orderno=5";
PortletRequestDispatcher rd = context.getRequestDispatcher(path);
rd.include(renderRequest, renderResponse);

regards,
Dennis

yangwawa wrote:
hi,everyone

I am now encoutering a greate trouble, there is an origianl jsp application,
now I want to wrap the application into a portlet and add the portlet into
jetspeed. what can I do to change the application into portlet.

Regards
Juan Yang


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to