Skip navigation.

Setup Guide

  Previous Next vertical dots separating previous/next from contents/index/pdf Contents View as PDF   Get Adobe Reader

Manual Installation

WebLogic Portlets for Groupware Integration installer automatically copies the portlet JSP files, portlet definition files, and the harmony_portlets.jar in place. These files are copied to directories under the %PORTAL_APPLICATION% directory. The installer also modifies the web.xml to add necessary Servlet mappings for WebLogic Portlets for Groupware Integration.

The following procedure shows you how to do these steps manually.

 


Copying WebLogic Portlets for Groupware Integration into Place

  1. Navigate to %COMPOZE_PORTLETS_HOME%\portlets and copy the compoze folder and all its contents.
  2. Paste the compoze folder into the following directory: %PORTAL_PROJECT%\portlets

 


Copying the CSS and Image Files into Place

  1. Navigate to %COMPOZE_PORTLETS_HOME%\skins\avitek\css and copy the compoze.css file.
  2. Paste the compoze.css file into the following directory:
  3. %PORTAL_PROJECT%\framework\skins\avitek\css
  4. Navigate to %COMPOZE_PORTLETS_HOME%\skins\avitek\images\ and copy the compoze directory.
  5. Paste the compoze directory into the following directory: %PORTAL_PROJECT%\framework\skins\avitek\images

Note: Avitek is a skin that ships with the sample portal. This skin may not exist on your portal. Copy the compoze.css and images files into the all of the skins that are configured for your environment.

 


Copying harmony_portlets.jar into Place

  1. Navigate to %COMPOZE_PORTLETS_HOME%\lib and copy the harmony_portlets.jar file.
  2. Paste the harmony_portlets.jar file into the following directory: %PORTAL_APPLICATION%\APP-INF\lib

 


Modifying the web.xml File

  1. Navigate to %PORTAL_PROJECT%\WEB-INF\
  2. Open the web.xml file with a text editor.
  3. In the Servlet section, add the following:
<servlet>
<servlet-name>CompozeGroupwareAttachmentServlet</servlet-name>
<display-name>CompozeGroupwareAttachmentServlet</display-name>
<description>Compoze Groupware Attachment Servlet</description>
<servlet-class>portlets.compoze.groupware.AttachmentServlet</servlet-class>
</servlet>
<servlet>
    <servlet-name>CompozeGroupwareEmbeddedImageServlet</servlet-name>
    <display-name>CompozeGroupwareEmbeddedImageServlet</display-name>
    <description>Compoze Groupware Embedded Image Servlet</description>
    <servlet-class>portlets.compoze.groupware.EmbeddedImageServlet</servlet-class>
</servlet>
  1. In the Servlet Mapping section of the same web.xml file, add the following:
<servlet-mapping>
    <servlet-name>CompozeGroupwareAttachmentServlet</servlet-name>
    <url-pattern>*.compozegroupwareattachmentservlet</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>CompozeGroupwareEmbeddedImageServlet</servlet-name>
    <url-pattern>*.compozegroupwareembeddedimageservlet</url-pattern>
</servlet-mapping>
  1. In the Tag Library definition section of the same web.xml file, add the following:
<taglib>
    <taglib-uri>compoze-portlets-im.tld</taglib-uri>
    <taglib-location>/WEB-INF/compoze-portlets-im.tld</taglib-location>
</taglib>

 


Copying compoze-portlets-im.tld into Place

  1. Navigate to %COMPOZE_PORTLETS_HOME%\web directory and copy the compoze-portlets-im.tld file.
  2. Paste the compoze-portlets-im.tld file into the following directory: %PORTAL_PROJECT%\WEB-INF

 


Copying compoze_portlets_im_resources.properties into Place

  1. Navigate to %COMPOZE_PORTLETS_HOME%\web\classes directory and copy the compoze-portlets-im.tld file.
  2. Paste the compoze_portlets_im_resources.properties file into the following directory: %PORTAL_PROJECT%\WEB-INF\classes

 

Skip navigation bar  Back to Top Previous Next