Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Aperi/sso"

(New page: You need the following: 1. Eclipse J2EE IDE 2. Open LDAP 3. Tomcat 5.5 4. Java 1.5 Eclipse From http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganyme...)
 
Line 1: Line 1:
You need the following:
+
 
 +
== You need the following prerequisites: ==
 
1. Eclipse J2EE IDE
 
1. Eclipse J2EE IDE
 
2. Open LDAP
 
2. Open LDAP
 
3. Tomcat 5.5
 
3. Tomcat 5.5
4. Java 1.5
+
4. Java 1.5 (make sure you already have this installed)
  
Eclipse
+
 
 +
== Eclipse ==
 
From http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/R/eclipse-jee-ganymede-win32.zip  
 
From http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/R/eclipse-jee-ganymede-win32.zip  
 
download eclipse-jee-ganymede-win32.zip.  Unzip the file into C:\Dev so that the following tree is created - C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe.   
 
download eclipse-jee-ganymede-win32.zip.  Unzip the file into C:\Dev so that the following tree is created - C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe.   
 
 
Eclipse is now installed.
 
Eclipse is now installed.
  
  
Tomcat
+
== Tomcat ==
 
From http://tomcat.apache.org/download-55.cgi, download apache-tomcat-5.5.26.zip.  Unzip the file such that you have the following directory tree - C:\Dev\Tools\apache-tomcat-5.5.26\bin.   
 
From http://tomcat.apache.org/download-55.cgi, download apache-tomcat-5.5.26.zip.  Unzip the file such that you have the following directory tree - C:\Dev\Tools\apache-tomcat-5.5.26\bin.   
 
 
Apache is now installed.
 
Apache is now installed.
  
  
 +
== Open LDAP ==
 +
From https://camelot.parityinc.net/STSDocs/openldap-2.2.29-db-4.3.29-openssl-0.9.8a-win32_Setup.exe download the .exe file.  Install the program by double clicking on it.  Install into the default location (C:\Program Files\OpenLDAP\).  OpenLdap is now installed.  We will configure later. 
 +
 +
 +
== Configure Eclipse ==
  
 
Open Eclipse by clicking on C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe.   
 
Open Eclipse by clicking on C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe.   

Revision as of 05:22, 27 July 2008

You need the following prerequisites:

1. Eclipse J2EE IDE 2. Open LDAP 3. Tomcat 5.5 4. Java 1.5 (make sure you already have this installed)


Eclipse

From http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/ganymede/R/eclipse-jee-ganymede-win32.zip download eclipse-jee-ganymede-win32.zip. Unzip the file into C:\Dev so that the following tree is created - C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe. Eclipse is now installed.


Tomcat

From http://tomcat.apache.org/download-55.cgi, download apache-tomcat-5.5.26.zip. Unzip the file such that you have the following directory tree - C:\Dev\Tools\apache-tomcat-5.5.26\bin. Apache is now installed.


Open LDAP

From https://camelot.parityinc.net/STSDocs/openldap-2.2.29-db-4.3.29-openssl-0.9.8a-win32_Setup.exe download the .exe file. Install the program by double clicking on it. Install into the default location (C:\Program Files\OpenLDAP\). OpenLdap is now installed. We will configure later.


Configure Eclipse

Open Eclipse by clicking on C:\Dev\Tools\eclipse-jee-ganymede-win32\eclipse\eclipse.exe.

Configure Tomcat in Eclipse: Go to Window --> Perspective Click on ‘Server’ Tree, then click on ‘Runtime Environments’ Click ‘Add’, then select Apache Tomcat v5.5 Click ‘Create a new local server’ Click ‘Next’ Click ‘Browse’ and select C:\Dev\Tools\apache-tomcat-5.5.26 Click ‘Ok’


-Dcatalina.base="C:\Dev\Code\.metadata\.plugins\org.eclipse.wst.server.core\tmp0" -Dcatalina.home="C:\Dev\Tools\apache-tomcat-5.5.26" -Dwtp.deploy="C:\Dev\Code\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps" -Djava.endorsed.dirs="C:\Dev\Tools\apache-tomcat-5.5.26\common\endorsed" -Dorg.eclipse.higgins.sts.conf="C:/Dev/Code/org.eclipse.higgins.sts.binding.axis1x.service/WebContent/ConfigurationFiles" -Dorg.eclipse.higgins.sts.conf.file="ManagedConfiguration.xml"

Back to the top