Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Deploying the Higgins I-Card Manager Service

Revision as of 11:39, 15 January 2008 by Asafronkova.aquasoft.dp.ua (Talk | contribs) (Deploying the Identity Agent Service)

Prerequisites

This guide assumes you have the following software:

  • Apache Tomcat 5.5 or later (or other servlet container)
  • "icm.war" file must be maked before deploying (i.e. ICM project must be builded. For information on how to configure and deploy the web applications, see here: Building the Higgins I-Card Manager Service).

Deploying the Identity Agent Service

Copy icm.war from the folder *\org.eclipse.higgins.icm\build\war into Tomcat folder "/webapps" and restart Tomcat for deploy Web Application.

If needed to use own RPPS, it must be first build and deploy. Also change path to this RPPS.

Default path to RPPS-server set in file *\org.eclipse.higgins.icm\src\main\wsdl\RPPSService.wsdl. This file shouldn't be changed. If needed to use another address RPPS-server then default, add into Tomcat-configuration parameter.

If you working with Windows:

  • enter in folder "Tomcat_folder/bin" and open the file "startup.bat",
  • place in the filst line of file:
SET JAVA_OPTS=%JAVA_OPTS% -Dorg.eclipse.higgins.ics.ws.RPPSEndpointAddress="full path to the RPPS-server";

otherwise:

  • enter in folder "Tomcat_folder/bin" and open the file "startup.sh",
  • place in the filst line of file:
JAVA_OPTS="$JAVA_OPTS " -Dorg.eclipse.higgins.ics.ws.RPPSEndpointAddress="full path to the RPPS-server".

Back to the top