Hi,
you need a .jsp page that you want to display and whithin your portlet in your .java class
you can do the following:
| protected void doView(RenderRequest rRequest, RenderResponse rResponse) throws
PortletException, IOException, UnavailableException
| {
| rResponse.setContentType("text/html");
|
| String sPage = (String) rRequest.getParameter("page");
|
| if(sPage != null)
| {
| PortletRequestDispatcher prd = getPortletContext
().getRequestDispatcher("/WEB-INF/jsp/construction.jsp");
| prd.include(rRequest, rResponse);
| }
| else
| {
| PortletRequestDispatcher prd =
getPortletContext().getRequestDispatcher("/WEB-INF/jsp/view.jsp");
| prd.include(rRequest, rResponse);
| }
|
| }
|
I hope it helps...
--Mariella.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3978806#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...