Hello Jerry,

If you already have Tomcat running standalone (it means, that
TOMCAT_HOME is set correct) and Apache is installed and working
properly, all that you need is :

     - copy mod_jk.dll to the C:\Program Files\Apache Group\Apache\modules
        (or another, according to your Apache location)
       You can download this file there 
http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.3/bin/win32/i386/mod_jk.dll
       (for Tomcat 3.2.3, for instance)

     - append the following line to the end of Apache httpd.conf file:
       Include %TOMCAT_HOME%/conf/mod_jk.conf-auto
       You should replace %TOMCAT_HOME% with the real value

     - copy your web application to webapps folder under Tomcat home.

     - restart Tomcat(mod_jk.conf-auto will be automatically updated
       with your web application context)

     -restart Apache

You can call your servlets now as:

http://your.domain.or.ip/your-web-app-name/servlet/your-servlet

where your-web-app-name is the name of the folder under webapps where
you copy your files

your-servlet - is servlet class name or the name, which defined in
web.xml file for your servlet.

Good luck!

Max

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to