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"

(Deploying the Identity Agent Service)
Line 1: Line 1:
 
==Prerequisites==
 
==Prerequisites==
  
This guide assumes you have the following software:
+
This guide assumes you to 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. 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]]).
+
* '''"icm.war"''' file must be maked before deploying (i.e. ICM project must be built. 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 path to this '''RPPS'''.
+
If needed to use own '''RPPS''', it must be first [http://wiki.eclipse.org/Building_the_Higgins_Identity_Agent_Service built] and [http://wiki.eclipse.org/Deploying_the_Identity_Agent_Service 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.   
 
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.   

Revision as of 12:49, 15 January 2008

Prerequisites

This guide assumes you to 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 built. 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 built 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