Last updated 6/21/02
|
Back
****************************************
ArcIMS Installation Log
****************************************
Patrick J. Barabe
Advanced Resource Technology Group
School of Renewable Natural Resources
The University of Arizona
****************************************
INFO:
NOTE: this procedure was adapted from that posted by Bart
Adriaanse on the ESRI ArcIMS Product Discussion Conference
SOFTWARE USED:
OS: | MS Windows 2000 Server |
Web: | Apache v 2.0 |
Servlet: | Tomcat 4.1 |
IMS: | ESRI ArcIMS 3.1 |
STEPS:
I. Install Java J2SDK 1.4.0
II. Install Apache 2.0.35
III. Install Jakarta-Tomcat 4.01
IV. Install/Configure ESRI ArcIMS 3.1
V. Configure Tomcat for ArcIMS
VI. Configure Apache for ArcIMS
VII. Optional Steps
STEP I - Install J2SDK 1.4.0 w/ J2RE
- That's all!
STEP II - Install Apache as a service
- Choose default settings
- Reboot
- Verify Apache is running by noting the presence of its default web page:
http://myhost.mydomain.edu/
or simply
http://localhost/
STEP III - Instal Tomcat
- Choose default options and install as an "NT Service"
- Reboot
- Verify Tomcat is running by noting the presence of its default web page:
http://myhost.mydomain.edu:8080/
or simply
http://localhost:8080/
STEP IV - Intall ArcIMS
- Choose to do a Custom Installation
- Click Options for Manager
- Choose Manager Applications
- Click Options for Application Server Connectors
- Choose Servlet Connector
- Choose AppServerLink
- Choose Samples, click Options
- Choose Tutorial Data
- Choose Sample HTML & Java Viewers
- Choose Sample Java & JSP Applications
- Choose Sample WMS Viewers
- Choose Documentation, click Options
- Choose ArcXML Guide
- Choose Customizing HTML Viewer
- Choose Customizing Java Viewer
- Choose Customizing AppServerLink
- JRE:
- Browse to JRE w/in J2SDK 1.4
- Host Name:
- Protocol:
http
- Host:
myhost:8080
- Web Site Working Directory:
c:\ArcIMS
- User's Working Directory:
c:\ArcIMS\AXL
- Application Server Information:
- Host Name:
myhost
- Registry Port:
5353
- Connector Port:
5300
- Servlet Connector Directory:
C:\Program Files\Apache Tomcat 4.0\webapps\ROOT\WEB-INF
NOTE: other instructions say %above path%\classes
- Provide an administrative user/password
- Install
STEP V - Configure Tomcat
- Open %Tomcat Install Dir%\conf\server.xml in a text editor
- Add to Context section:
<!-- ArcIMS Context using default directories -->
<Context path="/Website" docBase="c:/ArcIMS/Website" debug="0"/>
<Context path="/output" docBase="c:/ArcIMS/Output" debug="0"/>
- Create dir %Tomcat Install Dir%\webapps\ROOT\WEB-INF\classes
- Move all contents of directory ..\WEB-INF EXCEPT web.xml to classes
- Edit %ArcIMS Install Dir%\common\wrapper.properties to match local paths for
Tomcat & Java installations. Save this file as %Tomcat Install Dir%\conf\wrapper.properties
- Restart ArcIMS, Tomcat, & Apache
STEP VI - Configure Apache
- Open %ArcIMS install dir%\Common\ApacheAlias.txt, copy & past contents
to the Alias section of %Apache Install Dir%\conf\httpd.conf
STEP VII - Optional Steps
** INSTALL SAMPLE JSP/AppServerLink APPLICATIONS **
- Edit %ArcIMS Install Dir%/Server/etc/aimses.cfg so that
access="PUBLIC"
- Restart ArcIMS
- Add following lines to
%Tomcat Install Dir%/conf/wrapper.properties and
%ArcIMS Install Dir%/common/wrapper.propteries
wrapper.arcims_home=c:\Program Files\ESRI\ArcIMS3.1
wrapper.class_path=$(wrapper.arcims_home)\Connectors\AppServerLink\arcims_appserverlink.jar
wrapper.class_path=$(wrapper.arcims_home)\Samples\Java_JSP\Classes\arcims_jspbeans.jar
wrapper.class_path=$(wrapper.arcims_home)\Samples\Java_JSP\Classes\jaxp.jar
wrapper.class_path=$(wrapper.arcims_home)\Samples\Java_JSP\Classes\parser.jar
- Restart Apache
- Edit %ArcIMS Install Dir%/Samples/Java_JSP/AdvancedViewer/default.jsp
change serverName , serviceName , and ovServiceName variables to local parameters
- Add following line to %Tomcat Install Dir%/conf/server.xml
<Context path="/AdvancedViewer" docBase="c:/Program Files/ESRI/ArcIMS3.1/Samples/Java_JSP/AdvancedViewer" debug="0"/>
- Copy %ArcIMS Install Dir%/Samples/Java_JSP/Classes/*.* to %Tomcat Install Dir%/lib/.
- Copy %ArcIMS Install Dir%/Connectors/AppServerLink/arcims_appserverlink.jar to %Tomcat Install Dir%/lib/.
- Restart Apache
|