Using Web Express Logon

To run an Integration Object that is configured to use Web Express Logon in standard portlets, you must ensure PortletRequest is available in the Integration Object by calling setHPubPortletRequest(javax.portlet.PortletRequest) before executing the processRequest() method. For example, to run the Integration Object in a JSP page where the portlet renderRequest is available with the following statements:
<%@ taglib uri="http://java.sun.com/portlet" prefix="portletAPI" %>
<portletAPI:defineObjects/>
add the following statement:
<% ExampleIO.setHPubPortletRequest(renderRequest); %>
before the statement:
<% ExampleIO.processRequest(); %>