...
- Download the lastest version http://www.pubcookie.org/ and install in Apache or IIS as documented in PubCookie.
- In Apache httpd.conf, add the following lines, making the obvious name changes:
Code Block <Location /uPortal/Login> AuthType ISUNetID AuthName myIowaState PubCookieAppID myIowaState require valid-user </Location> <LocationMatch /uPortal/Logout.jsp> AllowOverride Options AuthName myIowaState PubCookieAppID myIowaState AuthType ISUNetID require valid-user PubcookieEndSession clearLogin </LocationMatch>
- in In uPortal/WEB-INF/classes/properties, change the PersonManagerFactory line in portal.properties:
Code Block org.jasig.portal.security.PersonManagerFactory.implementation=org.jasig.portal.security.provider.RemoteUserPersonManager
- in In security.properties, change the root lines to:
Code Block root=org.jasig.portal.security.provider.UnionSecurityContextFactory root.a=org.jasig.portal.security.provider.RemoteUserSecurityContextFactory root.a=org.jasig.portal.security.provider.SimpleSecurityContextFactory
- edit Edit webpages/stylesheets/org/jasig/portal/channels/CLogin/html.xsl, replacing the textfield and password fields to a link like
Code Block <form action="Login" method="post"> Welcome to iState.<br/> If you have a NetID, please <a href="Login">login</a>. </form>
- deploy Deploy the CLogin/html.xsl
- restart Restart the portal
When the user clicks on the Login link and has not authenticated, Pubcookie should redirect to the Pubcookie server to
authentication. When authenticated, the user will be redirected back to the Login where the REMOTE_USER variable will
be used to identify the user and the login process will be complete.