RE: Where to download Tomcat 4.0.6?

2003-12-30 Thread Ahmad, Kashif
Try this:

http://archive.apache.org/dist/jakarta/tomcat-4/archive/v4.0.6/bin/

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 30, 2003 2:21 PM
To: Tomcat Users List
Subject: Where to download Tomcat 4.0.6?

Howdy, 
I want to use tomcat 4.0.6 ( the old production quality release :) 
for some reason and googled the web for no result.

It seems that there is no 4.0.x versions in the old release archives .
I really need some features provided by the 4.0.x version.
Some one help me?

TIA

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Connecting Apache 2.0.47 to Tomcat 4.0.6

2003-10-29 Thread Ahmad, Kashif
Hi All:

 

I have a question and hope someone can answer it.  I have a client that is
trying to install Apache 2.0.47 with Tomcat 4.0.6.  The application he is
trying to run comes with instructions on how to configure Apache 2.0.43 with
Tomcat 4.0.4 with mod_jk_1.2.  Do the same instructions apply to with the
Apache 2.0.47 with Tomcat 4.0.6?  I've been able to get him so far to the
point where he can access the application on the Tomcat internal HTTP on the
default port 8080.  However, when he connects with Apache on port 80, he
gets a mis-configuration error.

 

Here are the instructions as provided for the application for configuring
Apache 2.0.43 and Tomcat 4.0.4

 

*Start Configuration Instruction*

 

4.2.2 Configure the Apache HTTP Server for Teams

Add the following lines at the end of httpd.conf in /opt/apache/conf:

#

# Configure mod_jk

#

LoadModule jk_module /opt/apache/modules/mod_jk.so

JkWorkersFile /opt/tomcat/conf/jk/workers.properties

JkLogFile /opt/tomcat/logs/mod_jk.log

JkLogLevel error

Alias /teams /opt/tomcat/webapps/teams

JkMount /teams/*.do ajp13

JkMount /teams/*.jsp ajp13

Alias /teamsadmin /opt/tomcat/webapps/teamsadmin

JkMount /teamsadmin/*.do ajp13

JkMount /teamsadmin/*.jsp ajp13

 

4.2.3 Configure Tomcat for TEAMS

 

4.2.3.1 Set Up Environment Variables

* Set JAVA_HOME to the JDK or JRE installation directory.

* Set TOMCAT_HOME to the Tomcat installation directory, e.g., /opt/tomcat.

 

4.2.3.2 Modify the Tomcat Startup Script

1. Add the following configuration information near the top of the file

$TOMCAT_HOME/bin/catalina.sh right after the comment section. Note that

it must be added as one line. Also, when copying from text editors, ensure
that

there are no hard returns in the entry between JAVA_OPTS= and

DORBagentPort settings.

 

# Define JAVA_OPTS

JAVA_OPTS=-Xbootclasspath/p:/opt/teams/jars/vbjapp.jar:/

opt/teams/jars/vbjorb.jar:/opt/teams/jars/swingall.jar -Xss2m -Xmx128m

-Dfile.encoding=ISO8859_1 -Djava.compiler=NONE -DSERVLET=true

-DTEAMS_HOME=/opt/teams -DLOG_FILE=/opt/tomcat/logs/teams.log

-DTEAMS_DEBUG_LEVEL=6 -DORBagentPort=15000

 

2. Also in the $TOMCAT_HOME/bin/catalina.sh file, append the following jar

files to the second CLASSPATH setting:

a. If you are using JRE 1.3, add:

b. If you are using JDK 1.3 (see following example), add:

CLASSPATH=$CLASSPATH:/opt/teams/jars/tools.jar:$ORACLE_HOME/jdbc/lib/

classes12.zip

CLASSPATH=$CLASSPATH:$ORACLE_HOME/jdbc/lib/classes12.zip

 

4.2.3.3 Create AJP Connecter Workers File

Create a file /opt/tomcat/conf/jk/workers.properties with the following

content (note that the value of worker.ajp13.port is an example):

The AJP Connector Port (5044) must also be put into the server.xml file,

located in the$TOMCAT_HOME/conf directory, in the section called Define an

AJP 1.3 Connector.

 

# Setup for Solaris system

#

workers.tomcat_home=/opt/tomcat/

workers.java_home=/opt/jdk1.3.1

ps=/

worker.list=ajp13

# Definition for Ajp13 worker

#

worker.ajp13.port=5044

worker.ajp13.host=localhost

worker.ajp13.type=ajp13

 

 

 

 



RE: Connecting Apache 2.0.47 to Tomcat 4.0.6

2003-10-29 Thread Ahmad, Kashif
Sorry, are you saying the Apache 2.0.47 works with mod_jk2 only?  Because I
know the instructions as provided work for Apache 2.0.43 and mod_jk1.2.
Seems like you are saying that 2.0.x doesn't work with 1.2 at all.  Just
clarifying.  Thanks ;-)

Kashif

-Original Message-
From: Asif Chowdhary [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2003 10:50 AM
To: Tomcat Users List
Subject: RE: Connecting Apache 2.0.47 to Tomcat 4.0.6

I think Apache 2.0 works with mod_jk2. and the configuration is very
different 
from mod_jk1.2. The directives such as JkWorkersFile JKMount dont work with
mod_jk2.

-Original Message-
From: Ahmad, Kashif [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 29, 2003 10:42 AM
To: '[EMAIL PROTECTED]'
Subject: Connecting Apache 2.0.47 to Tomcat 4.0.6


Hi All:

 

I have a question and hope someone can answer it.  I have a client that is
trying to install Apache 2.0.47 with Tomcat 4.0.6.  The application he is
trying to run comes with instructions on how to configure Apache 2.0.43 with
Tomcat 4.0.4 with mod_jk_1.2.  Do the same instructions apply to with the
Apache 2.0.47 with Tomcat 4.0.6?  I've been able to get him so far to the
point where he can access the application on the Tomcat internal HTTP on the
default port 8080.  However, when he connects with Apache on port 80, he
gets a mis-configuration error.

 

Here are the instructions as provided for the application for configuring
Apache 2.0.43 and Tomcat 4.0.4

 

*Start Configuration Instruction*

 

4.2.2 Configure the Apache HTTP Server for Teams

Add the following lines at the end of httpd.conf in /opt/apache/conf:

#

# Configure mod_jk

#

LoadModule jk_module /opt/apache/modules/mod_jk.so

JkWorkersFile /opt/tomcat/conf/jk/workers.properties

JkLogFile /opt/tomcat/logs/mod_jk.log

JkLogLevel error

Alias /teams /opt/tomcat/webapps/teams

JkMount /teams/*.do ajp13

JkMount /teams/*.jsp ajp13

Alias /teamsadmin /opt/tomcat/webapps/teamsadmin

JkMount /teamsadmin/*.do ajp13

JkMount /teamsadmin/*.jsp ajp13

 

4.2.3 Configure Tomcat for TEAMS

 

4.2.3.1 Set Up Environment Variables

* Set JAVA_HOME to the JDK or JRE installation directory.

* Set TOMCAT_HOME to the Tomcat installation directory, e.g., /opt/tomcat.

 

4.2.3.2 Modify the Tomcat Startup Script

1. Add the following configuration information near the top of the file

$TOMCAT_HOME/bin/catalina.sh right after the comment section. Note that

it must be added as one line. Also, when copying from text editors, ensure
that

there are no hard returns in the entry between JAVA_OPTS= and

DORBagentPort settings.

 

# Define JAVA_OPTS

JAVA_OPTS=-Xbootclasspath/p:/opt/teams/jars/vbjapp.jar:/

opt/teams/jars/vbjorb.jar:/opt/teams/jars/swingall.jar -Xss2m -Xmx128m

-Dfile.encoding=ISO8859_1 -Djava.compiler=NONE -DSERVLET=true

-DTEAMS_HOME=/opt/teams -DLOG_FILE=/opt/tomcat/logs/teams.log

-DTEAMS_DEBUG_LEVEL=6 -DORBagentPort=15000

 

2. Also in the $TOMCAT_HOME/bin/catalina.sh file, append the following jar

files to the second CLASSPATH setting:

a. If you are using JRE 1.3, add:

b. If you are using JDK 1.3 (see following example), add:

CLASSPATH=$CLASSPATH:/opt/teams/jars/tools.jar:$ORACLE_HOME/jdbc/lib/

classes12.zip

CLASSPATH=$CLASSPATH:$ORACLE_HOME/jdbc/lib/classes12.zip

 

4.2.3.3 Create AJP Connecter Workers File

Create a file /opt/tomcat/conf/jk/workers.properties with the following

content (note that the value of worker.ajp13.port is an example):

The AJP Connector Port (5044) must also be put into the server.xml file,

located in the$TOMCAT_HOME/conf directory, in the section called Define an

AJP 1.3 Connector.

 

# Setup for Solaris system

#

workers.tomcat_home=/opt/tomcat/

workers.java_home=/opt/jdk1.3.1

ps=/

worker.list=ajp13

# Definition for Ajp13 worker

#

worker.ajp13.port=5044

worker.ajp13.host=localhost

worker.ajp13.type=ajp13

 

 

 

 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: E-Mail to CompuServe Customer Service

2003-08-22 Thread Ahmad, Kashif
Good grief... who put an automated mailbox on the tomcat users list?  Is
flooding my inbox.  

-Original Message-
From: CompuServe Customer Service [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 22, 2003 1:13 PM
To: Tomcat Users List
Subject: E-Mail to CompuServe Customer Service

Thank you for your e-mail message to CompuServe Customer Service.
In order to improve our service to members, the general account 
70006,101 ([EMAIL PROTECTED]) has now been replaced 
with new mailboxes dedicated to each country/region.

Please re-send your message to one of the following e-mail 
addresses and a local CompuServe Representative will respond to 
you via e-mail:

United States and Canada:
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

United Kingdom: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Germany and Austria: 
Technische Mitgliederbetreuung - [EMAIL PROTECTED]
Allgemeine Fragen - [EMAIL PROTECTED]
Fragen zur Abrechnung - [EMAIL PROTECTED]
Firmenkundenbetreuung - [EMAIL PROTECTED]

France:
Assistance Technique - [EMAIL PROTECTED]
Assistance Technique Mac - [EMAIL PROTECTED]
Gestion de votre Compte Personnel - [EMAIL PROTECTED]
Gestion de votre Compte Société - [EMAIL PROTECTED]


Netherlands: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Switzerland:
Fragen zur Abrechnung (billing-issues) - [EMAIL PROTECTED] 
Allgemeine Anfragen (general demands) - [EMAIL PROTECTED] 
Technische Mitgliederbetreuung (technical support) - [EMAIL PROTECTED]  
Firmenkundenbetreuung (CBA-issues) - [EMAIL PROTECTED]

All other European Countries: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Japan - CompuServe/NIFTYServe:
General Support - [EMAIL PROTECTED]

Australia/Pacific:
General Support - [EMAIL PROTECTED]

Mexico: 
General Support - [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java and tomcat issues

2003-08-14 Thread Ahmad, Kashif
Sounds like your not appending the $JAVA_HOME/bin, but replacing the whole
$PATH setting.  You want to start the PATH assignment with something like
this:

PATH=$PATH:$JAVA_HOME/bin

Hope this helps

Kashif

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 05, 2003 2:08 PM
To: [EMAIL PROTECTED]
Subject: RE: Java and tomcat issues


Okay everytime I do it my commands don't work on the box like ls, cd, ll -
the
only command that works is the exit command

Any ideas?

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 05, 2003 2:06 PM
To: Tomcat Users List
Subject: RE: Java and tomcat issues



Howdy,

I'm trying to set up JAVA for tomcat on a redhat 8.1 box and I keep
getting
this message after I set the JAVA_HOME path

-bash-2.05b# which java
/usr/bin/which: no java in 
(/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R
6/bi
n
)
-bash-2.05b#

That's pretty clear, isn't it? ;)  Add $JAVA_HOME/bin to your $PATH.

Yoav Shapira



This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential, proprietary
and/or privileged.  This e-mail is intended only for the individual(s) to
whom
it is addressed, and may not be saved, copied, printed, disclosed or used by
anyone else.  If you are not the(an) intended recipient, please immediately
delete this e-mail from your computer system and notify the sender.  Thank
you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]