Posts

Showing posts with the label portalization

Converting exisitng application to portlets

I would recommend you to call your jsp application from an iframe portlet. You just need to install the iframe portlet and edit it with the URL of your jsp app. Use iframe portlets supplied with IBM Portal Server. Jetspeed pageportlet can also be used. The example of IFRAME Portlet is as follows - <%@ page session="false" contentType="text/html"%> <%@ taglib uri="/WEB-INF/tld/portlet.tld" prefix="portlet" %> <portlet:init/> <% if (portletRequest.getPortletSettings().getAttribute("iframe.enabled").equalsIgnoreCase("true")) { %> <script type="text/javascript"> var initialUri = "<portlet:settingsAttribute name='initial.uri'/>"; // sets initial uri var frameWidth = "<portlet:settingsAttribute name='frame.width'/>"; // sets frame width var frameHeight = "<portlet:settingsAttribute name='frame.height'/>"; // sets frame hei...