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

Difference between revisions of "Deploying the Higgins I-Card Manager Service"

(Prerequisites)
(Prerequisites)
Line 3: Line 3:
 
This guide assumes you have the following software:
 
This guide assumes you have the following software:
 
* Apache Tomcat 5.5 or later (or other servlet container)
 
* Apache Tomcat 5.5 or later (or other servlet container)
* '''"icm.war"''' file must be maked before deploying (i.e. RPPS-web project must be builded. For information on how to configure and deploy the web applications, see here: [[Building the Higgins I-Card Manager Service]]).
+
* '''"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===
 
===Deploying the Identity Agent Service===
Line 9: Line 9:
 
Copy '''icm.war''' from the folder '''*\org.eclipse.higgins.icm\build\war''' into '''Tomcat folder "/webapps"''' and restart Tomcat for deploy Web Application.  
 
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 [http://wiki.eclipse.org/Building_the_Higgins_Identity_Agent_Service build] and [http://wiki.eclipse.org/Deploying_the_Identity_Agent_Service deploy]. Also change into '''icm''' path to this '''RPPS'''.
+
If needed to use own '''RPPS''', it must be first [http://wiki.eclipse.org/Building_the_Higgins_Identity_Agent_Service build] and [http://wiki.eclipse.org/Deploying_the_Identity_Agent_Service deploy]. Also change into '''ICM''' path to this '''RPPS'''.
  
 
If need using another address '''RPPS-server''' then default, add into Tomcat-configuration parameter.  
 
If need using another address '''RPPS-server''' then default, add into Tomcat-configuration parameter.  

Revision as of 10:01, 15 January 2008

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 into ICM path to this RPPS.

If need using 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 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 server".

Back to the top