Apache/Tomcat configuration

2004-03-11 Thread Nancy Clark
Just wondering if anyone has answers to this... Thanks in advance for your time, N Hi, Here is what I'm trying to do Set non-html home page for www.foo.com to abc.bar ( a file processed by Tomcat) I've tried editing httpd.conf to include : ProxyPass /dir http://localhost:port#/dir> and Pr

Newbie to Apache/Tomcat configuration

2004-03-11 Thread Nancy Clark
Hi, Here is what I'm trying to do Set non-html home page for www.foo.com to abc.bar ( a file processed by Tomcat) I've tried editing httpd.conf to include : ProxyPass /dir http://localhost:port#/dir> and ProxyReverse with the same settings. Now if I type localhost/dir/abc.bar, everything

Re: Apache-Tomcat configuration question

2003-07-02 Thread John Turner
of the URI directive? _ Atreya Basu Developer, Greenfield Research Inc. e-mail: atreya (at) greenfieldresearch (dot) ca -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: July 2, 2003 12:53 PM To: Tomcat Users List Subject: Re: Apache-Tomcat configuration

RE: Apache-Tomcat configuration question

2003-07-02 Thread Phillip Qin
Should it be [uri:/myDir/Servlet/*]? -Original Message- From: Atreya Basu [mailto:[EMAIL PROTECTED] Sent: July 2, 2003 12:05 PM To: 'Tomcat Users List' Subject: RE: Apache-Tomcat configuration question Could I do the following: [uri:myDir/Servlet/*] context=myDir Is that

RE: Apache-Tomcat configuration question

2003-07-02 Thread Atreya Basu
[mailto:[EMAIL PROTECTED] Sent: July 2, 2003 12:53 PM To: Tomcat Users List Subject: Re: Apache-Tomcat configuration question Most people don't mix servlets and JSP, in which case you would use something like [uri:/myDir/servlet/*] worker=ajp13:localhost:8009 In the case of something like S

Re: Apache-Tomcat configuration question

2003-07-02 Thread John Turner
3 12:34 PM To: Tomcat Users List Subject: Re: Apache-Tomcat configuration question Use a map. JK example: JkMount /*.jsp ajp13 JK2 example [uri:/examples/*.jsp] worker=ajp13:localhost:8009 John On Wed, 02 Jul 2003 12:28:18 -0300, Atreya Basu <[EMAIL PROTECTED]> wrote: Hello, Is it p

RE: Apache-Tomcat configuration question

2003-07-02 Thread Atreya Basu
? _ Atreya Basu Developer, Greenfield Research Inc. e-mail: atreya (at) greenfieldresearch (dot) ca -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: July 2, 2003 12:34 PM To: Tomcat Users List Subject: Re: Apache-Tomcat configuration question Use a map

Re: Apache-Tomcat configuration question

2003-07-02 Thread John Turner
Use a map. JK example: JkMount /*.jsp ajp13 JK2 example [uri:/examples/*.jsp] worker=ajp13:localhost:8009 John On Wed, 02 Jul 2003 12:28:18 -0300, Atreya Basu <[EMAIL PROTECTED]> wrote: Hello, Is it possible to have a directory where all the HTML files and file permissions etc. are handled

Apache-Tomcat configuration question

2003-07-02 Thread Atreya Basu
Hello, Is it possible to have a directory where all the HTML files and file permissions etc. are handled by Apache and all the JSPs and servlets handled by Tomcat? I have Tomcat and Apache working successfully using JK2. What I want to do is the following: Say I have a directory: /mydirectory

Re: Newbie: Apache & Tomcat Configuration.

2003-06-13 Thread John Turner
MAIL PROTECTED] Sent: Thursday, June 12, 2003 5:10 PM To: 'Tomcat Users List' Subject: RE: Newbie: Apache & Tomcat Configuration. Muhammad You actually configure apache to call tomcat when ever it needs it - i.e tomcat runs in-process This configuration is done in your jk2 config file i

RE: Newbie: Apache & Tomcat Configuration.

2003-06-12 Thread Sohail Muhammad
Subject: RE: Newbie: Apache & Tomcat Configuration. Muhammad You actually configure apache to call tomcat when ever it needs it - i.e tomcat runs in-process This configuration is done in your jk2 config file in the tomcat/conf directory and in your apache2/conf workers2.properties file. If y

RE: Newbie: Apache & Tomcat Configuration.

2003-06-12 Thread Kevin Passey
Users List Subject: RE: Newbie: Apache & Tomcat Configuration. Hello, i have added the following lines in my conf/server.xml file: when i start the tomcat server i get the ClassNotFoundException for org.apache.ajp.tomcat4.Ajp13Connector is there some file missing in my tomcat. i'm usi

RE: Newbie: Apache & Tomcat Configuration.

2003-06-12 Thread Sohail Muhammad
alyst SSD, UBL I.T & T Division, Karachi Voice: 90332418,90332415-6 -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 8:37 PM To: Tomcat Users List Subject: Re: Newbie: Apache & Tomcat Configuration. No, AJP is a protocol. John O

Re: Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread John Turner
ubject: Re: Newbie: Apache & Tomcat Configuration. Hello All, Newbie Question: I believe these questions have been answered before but i have not been able to grasp the procedure. 1) I want to use Tomcat 4.0 with Apache 2.0.43 . How do i integrate the two? If you look in the archive som

RE: Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread Phillip Qin
Is there a connector called ajp14? -Original Message- From: Michele Neylon :: Blacknight Solutions [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 5:24 AM To: [EMAIL PROTECTED] Subject: Re: Newbie: Apache & Tomcat Configuration. > Hello All, > > Newbie Question: > &

Re: Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread Jason Bainbridge
On Wed, 11 Jun 2003 20:27, John Turner wrote: > > 3) Is it possible to adjust both Apache and Tomcat in such a way that > > whenever Apache is started Tomcat starts automatically and whenever > > Apache stops Tomcat also shutsdown? > > Possible, yes. Actually accomplished in production, not that

Re: Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread John Turner
On Wed, 11 Jun 2003 14:13:46 +0500, Sohail Muhammad <[EMAIL PROTECTED]> wrote: I believe these questions have been answered before but i have not been able to grasp the procedure. They're answered daily. 1) I want to use Tomcat 4.0 with Apache 2.0.43 . How do i integrate the two? With a conne

Re: Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread Michele Neylon :: Blacknight Solutions
> Hello All, > > Newbie Question: > > I believe these questions have been answered before but i have not been > able to grasp the procedure. > > 1) I want to use Tomcat 4.0 with Apache 2.0.43 . How do i integrate the > two? If you look in the archive some links to tutorials were posted yesterday

Newbie: Apache & Tomcat Configuration.

2003-06-11 Thread Sohail Muhammad
Hello All, Newbie Question: I believe these questions have been answered before but i have not been able to grasp the procedure. 1) I want to use Tomcat 4.0 with Apache 2.0.43 . How do i integrate the two? 2) After these are integrated what should i do to make the Apache webserver transfer r

Re: Apache/Tomcat Configuration Problem

2003-05-29 Thread John Turner
DocumentRoot /usr/local/bin/tomcat/webapps/ROOT If "/" = ROOT, there shouldn't be any content in /usr/local/bin/tomcat/webapps at all, static or not. John On Wed, 28 May 2003 19:41:27 +0200, Johannes Lietz <[EMAIL PROTECTED]> wrote: Sorry, I was mistaken: I've got several webapps under tomca

Re: Apache/Tomcat Configuration Problem

2003-05-29 Thread Johannes Lietz
Sorry, I was mistaken: I've got several webapps under tomcat/webapps and one virtualhost. Let's say I've got app1 and app1/image.gif. If I call: http://localhost/app1/image.gif Apache will look for: /usr/local/bin/tomcat/webapps/app1/image.gif and everything is perfect. Then I've g

Re: Apache/Tomcat Configuration Problem

2003-05-29 Thread John Turner
You're saying that if you make your DocumentRoot "webapps/ROOT" that Apache doesn't serve content in that directory? What error message does Apache display? The ROOT webapp is "special" as far as Tomcat is concerned. John On Wed, 28 May 2003 17:28:57 +0200, Johannes Lietz <[EMAIL PROTECTED]>

Apache/Tomcat Configuration Problem

2003-05-29 Thread Johannes Lietz
This is a minor problem, but I have no idea yet: In httpd.conf I configured VirtualHosts with a DocumentRoot like this: ... DocumentRoot /usr/local/bin/tomcat/webapps ... JkUriSet worker ajp13:localhost:8009 JkUriSet worker ajp13:localhost:8009

Re: Apache-Tomcat configuration on Win2k

2003-02-13 Thread Jake Robb
Arun, Try putting the paths to JkWorkersFile, JkLogFile, and your examples directory in quotes, i.e.: LoadModule jk_module libexec/mod_jk-1.3.26.dll AddModule mod_jk.c JkWorkersFile "C:/Tomcat4_1_12/conf/workers.properties" JkLogFile "C:/Tomcat4_1_12/logs/mod_jk.log" JkLogLevel debug Alias

Apache-Tomcat configuration on Win2k

2003-02-13 Thread Arun
Hi, I'm trying to configure Apache(1.3x) with Tomcat(4.1) using mod_jk on Win2k. After configuring Tomcat, I defined a worker.proterties file under Tomcat as: worker.list=testWorker worker.testWorker.port=8009 worker.testWorker.host=localhost

RE: Apache Tomcat configuration Issue

2002-12-27 Thread Turner, John
help. John -Original Message- From: Justin L. Spies [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 3:03 PM To: 'Tomcat Users List' Subject: RE: Apache Tomcat configuration Issue Myles, Sorry to say, but Jeffrey is correct--Tomcat will not service the PHP requests

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
D] <mailto:[EMAIL PROTECTED]> ] Sent: Thu 12/26/2002 12:27 PM To: 'Tomcat Users List' Cc: Subject: RE: Apache Tomcat configuration Issue List o' links http://jakarta.apache.org/tomcat/tomca

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
ython, JPython, etc. -Original Message- From: Justin L. Spies [mailto:[EMAIL PROTECTED]] Sent: Thu 12/26/2002 3:02 PM To: 'Tomcat Users List' Cc: Subject: RE: Apache Tomcat configuration Issue Myles,

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
sage- From: PELOQUIN,JEFFREY (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Thu 12/26/2002 3:00 PM To: 'Tomcat Users List' Cc: Subject: RE: Apache Tomcat configuration Issue to the best of my knowledge tomcat will not perform php requests. But then again I have

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Justin L. Spies
ember 26, 2002 2:52 PM To: 'Tomcat Users List' Subject: RE: Apache Tomcat configuration Issue I do not know about tomcat and php, I would guess no. however the www.apache.org <http://www.apache.org> site lists this as the link for php http://www.php.net/ <http://www.php.net/>

RE: Apache Tomcat configuration Issue

2002-12-26 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
Jeff -Original Message- From: Moutoux, Myles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 12:55 PM To: Tomcat Users List Subject: RE: Apache Tomcat configuration Issue I know that it works with Apache2. I've already had that working. What I was hoping was that there

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
Sent: Thu 12/26/2002 2:52 PM To: 'Tomcat Users List' Cc: Subject: RE: Apache Tomcat configuration Issue I do not know about tomcat and php, I would guess no. however the www.apache.org <http://www.apache.org> s

RE: Apache Tomcat configuration Issue

2002-12-26 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
good luck Jeff -Original Message- From: Moutoux, Myles [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 12:49 PM To: Tomcat Users List Subject: RE: Apache Tomcat configuration Issue I've tried everything that I can, based on the references that you sent. All without

RE: Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
omcat service PHP requests? -Original Message- From: PELOQUIN,JEFFREY (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Thu 12/26/2002 12:27 PM To: 'Tomcat Users List' Cc: Subject: RE: Apache Tomcat conf

RE: Apache Tomcat configuration Issue

2002-12-26 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
ECTED]] Sent: Thursday, December 26, 2002 10:14 AM To: [EMAIL PROTECTED] Subject: Apache Tomcat configuration Issue This seems to be a very common issue, however, I have to submit is again because I am unable to get things to work properly. I have read all the documentation that I can find, but, end up

Apache Tomcat configuration Issue

2002-12-26 Thread Moutoux, Myles
This seems to be a very common issue, however, I have to submit is again because I am unable to get things to work properly. I have read all the documentation that I can find, but, end up more confused than when I started. So, here goes. Everything is running on a Win2K machine with plenty of me

apache-tomcat configuration for java server pages

2002-11-21 Thread kala sunil
hi we are in a project that which is a e-mail reader which involves jsp, voicexml.the problem has arised with the part of trying to configure apache-tomcat for java server pages. please look into the folowing: WEB.XML FILE WebAppRegistrant org.machino.gardenpath.WebAppRegistrant

apache + tomcat configuration

2002-11-17 Thread Hong . Sun
hi, I am trying to integrate apache 1.3.26 and tomcat 4.0.6 on win2000 server. After an initial configuration, I can get them going, and I can also access all the examples' servlet through apache, I mean without giving :8080, but I still have the following problems: __1. in my apache error.log, eve

RE: Apache+Tomcat Configuration problems

2002-10-25 Thread Turner, John
lto:jfn@;msc.com] > Sent: Thursday, October 24, 2002 5:29 PM > To: [EMAIL PROTECTED] > Subject: Apache+Tomcat Configuration problems > > > > OK, I'm about ready to scream. Although I'm certain that I've > missed something appallingly simple, I have no idea

Re: Apache+Tomcat Configuration problems

2002-10-24 Thread Robert L Sowders
002 02:29 PM Please respond to "Tomcat Users List" To: <[EMAIL PROTECTED]> cc: Subject:Apache+Tomcat Configuration problems OK, I'm about ready to scream. Although I'm certain that I've missed something appallingly simple, I h

Re: Apache+Tomcat Configuration problems

2002-10-24 Thread Milt Epstein
On Thu, 24 Oct 2002, J.F. Noonan wrote: > OK, I'm about ready to scream. Although I'm certain that I've > missed something appallingly simple, I have no idea what that > something is. > > I have installed Tomcat tomcat4-4.1.12-full.2jpp.noarch.rpm on a > RH7.3 system. I have compiled and install

Apache+Tomcat Configuration problems

2002-10-24 Thread J.F. Noonan
OK, I'm about ready to scream. Although I'm certain that I've missed something appallingly simple, I have no idea what that something is. I have installed Tomcat tomcat4-4.1.12-full.2jpp.noarch.rpm on a RH7.3 system. I have compiled and installed Apache 1.3.27 with mod_ssl, EAPI, and mod_so. I

Re: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Kent Perrier
On Tue, Oct 08, 2002 at 02:39:45PM -0400, Turner, John wrote: > > Not really. The WARP connector is another connector...that may be why you > are getting the message. If Apache is set to use WARP, but Tomcat isn't (or > vice versa) there wouldn't be an open socket, which might generate the > Ap

RE: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Turner, John
o you have control over the Tomcat server.xml? Which connectors are enabled in there? John > -Original Message- > From: Kent Perrier [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 08, 2002 2:28 PM > To: Tomcat Users List > Subject: Re: Strange differences in Ap

Re: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Kent Perrier
On Tue, Oct 08, 2002 at 01:54:43PM -0400, Turner, John wrote: > > As an aside, what happens if you try and access > http://127.0.0.1:8080/examples ? > One last thing, I see in the apache_log, on restart of Tomcat this following is written to this file: 2002-10-08 13:19:49 [org.apache.catalina.

Re: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Kent Perrier
On Tue, Oct 08, 2002 at 01:54:43PM -0400, Turner, John wrote: > > As an aside, what happens if you try and access > http://127.0.0.1:8080/examples ? > One more thing, the requests are even getting to the Tomcat server as nothing is being written to the tomcat logfiles. Kent -- To unsubscribe

Re: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Kent Perrier
On Tue, Oct 08, 2002 at 01:54:43PM -0400, Turner, John wrote: > > As an aside, what happens if you try and access > http://127.0.0.1:8080/examples ? I tried that as well. I get the same error, except that it says 127.0.0.1 instead of localhost :) Kent -- To unsubscribe, e-mail:

RE: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Turner, John
As an aside, what happens if you try and access http://127.0.0.1:8080/examples ? John > -Original Message- > From: Kent Perrier [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 08, 2002 1:47 PM > To: Tomcat Users List > Subject: Re: Strange differences i

Re: Strange differences in Apache/Tomcat configuration

2002-10-08 Thread Kent Perrier
On Mon, Oct 07, 2002 at 04:18:25PM -0400, Turner, John wrote: > > Sorry, I'm fresh out of ideas. It sure sounds like a permissions issue to > me, but I can't say for sure without investigation. > > Let us know what it was when you get it resolved. I don't have this solved, yet, but I am worki

RE: Strange differences in Apache/Tomcat configuration

2002-10-07 Thread Turner, John
y, October 07, 2002 12:15 PM > To: Tomcat Users List > Subject: Re: Strange differences in Apache/Tomcat configuration > > > On Mon, Oct 07, 2002 at 12:05:05PM -0400, Turner, John wrote: > > > > That's a standard Apache "no auth" error message. So, my

Re: Strange differences in Apache/Tomcat configuration

2002-10-07 Thread Kent Perrier
On Mon, Oct 07, 2002 at 12:05:05PM -0400, Turner, John wrote: > > That's a standard Apache "no auth" error message. So, my guess is there's > something going on with users (which user the web server is running as) vs. > who owns index.jsp, or maybe a rogue .htaccess file somewhere preventing the

RE: Strange differences in Apache/Tomcat configuration

2002-10-07 Thread Turner, John
ing, of course, that you're changing the URL from http://local to http://remote. ;) John > -Original Message- > From: Kent Perrier [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 07, 2002 11:46 AM > To: [EMAIL PROTECTED] > Subject: Strange differences in Apache/Tom

Strange differences in Apache/Tomcat configuration

2002-10-07 Thread Kent Perrier
All, I am configuring an Apache (2.0.40) server to run in front of Tomcat (4.0.5) on a machine, running RH 7.2, that is co-located at a hosting provider. I have a local Linux box, also running RH 7.2, that I am working using as a sandbox to play with before I attempt to get the server configure

Re: Apache/Tomcat Configuration Question

2002-09-23 Thread Milt Epstein
On Mon, 23 Sep 2002, John Green wrote: > All, > > I have Apache and Tomcat integrated together using mod_jk. The > problem is now when I hit my webserver, it always defaults to the > root context of tomcat. No matter what I set in my Apache > httpd.conf file it gets ignored. I have tried to se

RE: Apache/Tomcat Configuration Question

2002-09-23 Thread Venkat Reddy Valluri
n 9/23/2002 11:22 AM To: [EMAIL PROTECTED] Cc: Subject:Apache/Tomcat Configuration Question All, I have Apache and Tomcat integrated together using mod_jk. The problem is now when I hit my webserver, it always defaults to the root context of tomcat. No matter what I set in my Apache

Apache/Tomcat Configuration Question

2002-09-23 Thread John Green
All, I have Apache and Tomcat integrated together using mod_jk. The problem is now when I hit my webserver, it always defaults to the root context of tomcat. No matter what I set in my Apache httpd.conf file it gets ignored. I have tried to setup a virtual server in my httpd.conf file to point

Re: Apache+tomcat configuration

2002-08-15 Thread Christoph Fischer
Hi, take a look at this page: http://www.ubeans.com/tomcat/ it's all in there. Chris Alarcon, Fabio wrote: >Hi guys >Is there a page or an archive list where I can found in order to run apache >together with Tomcat? >I know some of you has already configured sucessfuly > >Thanks in advance f

Apache+tomcat configuration

2002-08-15 Thread Alarcon, Fabio
Hi guys Is there a page or an archive list where I can found in order to run apache together with Tomcat? I know some of you has already configured sucessfuly Thanks in advance for your replies Fabio -- "Este mensaje y su

RE: Newbie Question: Apache+Tomcat configuration

2002-06-12 Thread Turner, John
ld be great if you could post a brief How-To document. John Turner [EMAIL PROTECTED] http://www.aas.com -Original Message- From: Stonix [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 9:54 PM To: Tomcat Users List Subject: Newbie Question: Apache+Tomcat configuration Hi,

Newbie Question: Apache+Tomcat configuration

2002-06-11 Thread Stonix
Hi, I am absolutely newbie on Tomcat. I have a Linux RH 7.1 box and a Apache 1.3.19 running on it. I just installed Tomcat 4.0.3. Seems like it has been successfully installed because if test it on 8080 port all the java examples running perfect. Now, what have to be done for the rest? I guess

Apache-tomcat configuration

2002-01-22 Thread Tamim, Samir
Hi all, Still trying to let Apache SSL / Tomcat with Warp Connector to Work on Solaris 8. JDK 1.3.1_02 / Apache 1.3.22 / Tomcat 4.0.1 So still having the following : [Fri Jan 18 15:27:44 2002] [error] Cannot receive handshake WARP packet [Fri Jan 18 15:27:44 2002] [error] Cannot re

Re: Apache-Tomcat configuration...

2001-12-20 Thread Denny Chambers
The webapps module for win32: http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.1/bin/win32/ Marcelo Gabriel Demestri Felip wrote: > > Hi everybody! > > I want to install and Tomcat (4.0.1) like a servlet container and > jsp interpreter of an Apache (1.3.20) web server. I wo

Apache-Tomcat configuration...

2001-12-20 Thread Marcelo Gabriel Demestri Felip
Hi everybody! I want to install and Tomcat (4.0.1) like a servlet container and jsp interpreter of an Apache (1.3.20) web server. I work with Win2000, professional edition. For this i need the web_module.so Where i can download this file? There is another step to achieve this goal (Apache+T

Re: Apache-Tomcat configuration

2001-08-03 Thread Neelakshi
Are you trying to load images from the relative path? You will have to specify the path as /mycontext/images/myimage.gif instead of images/myimage.gif as later works only with tomcat, former with both. Alexis Alarcón Barra wrote: > > Hi, i'm using Apache 1.3.12 and Tomcat 3.2.3. They work sep

Re: Apache-Tomcat configuration

2001-08-02 Thread Alexis Alarcón Barra
Hi ... i've changed the path adding the context name. It worked only using tomcat but it still doesn't work using apache. Alexis Neelakshi wrote: > Are you trying to load images from the relative path? > You will have to specify the path as > /mycontext/images/myimage.gif > instead of images/my

RE: java.net.SocketException in Apache + Tomcat configuration.... PLZ HELP !!

2001-06-12 Thread Chauhan, Anand
om: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 12, 2001 2:00 PM To: [EMAIL PROTECTED] Subject: AW: java.net.SocketException in Apache + Tomcat configuration PLZ HELP !! this happens if a user uses Internet Explorer and Internet Explorer already has a resource in cache. IE w

AW: java.net.SocketException in Apache + Tomcat configuration.... PLZ HELP !!

2001-06-12 Thread Daniel Strobl
An: [EMAIL PROTECTED] Betreff: java.net.SocketException in Apache + Tomcat configuration PLZ HELP !! Hi ALL: Could y'all please help me with the following errors. Although it doesn't hamper my flow of logic and control but I was just wondering why it should ever occur at the first

java.net.SocketException in Apache + Tomcat configuration.... PLZ HELP !!

2001-06-12 Thread Chauhan, Anand
Hi ALL: Could y'all please help me with the following errors. Although it doesn't hamper my flow of logic and control but I was just wondering why it should ever occur at the first place. My configuration includes Apache Web Server 1.3.14+ and Tomcat 3.2.1. Here is the exception for your refere

Re: Very Basic question about Apache-Tomcat configuration

2001-04-18 Thread Sam Newman
> > Anyway, I am running now (examples at least - now I have to make my real job > work!) thanks again for the clues. > > Gerry Allot of people have issues with the documentation for this area. All the information is there, it just can be a little hard to find :-) The workers.properties file als

Re: Very Basic question about Apache-Tomcat configuration

2001-04-18 Thread Gerry Duhig
: Wednesday, April 18, 2001 12:57 PM Subject: Re: Very Basic question about Apache-Tomcat configuration > If you access file://localhost:8080/examples you are completely > circumventing Apache and going straight to tomcat. Assuming this is not what > your doing to get the jsp's

Re: Very Basic question about Apache-Tomcat configuration

2001-04-18 Thread Sam Newman
ect: Very Basic question about Apache-Tomcat configuration > Help please! > > I have Apache running with ApacheJServ and working fine! > > I want to test tomcat and consider it as a replacement for JServ. > > I downloaded Tomcat and edited the Apache httpd.conf to include the &

Very Basic question about Apache-Tomcat configuration

2001-04-18 Thread Gerry Duhig
Help please! I have Apache running with ApacheJServ and working fine! I want to test tomcat and consider it as a replacement for JServ. I downloaded Tomcat and edited the Apache httpd.conf to include the apache-tomcat.conf file, instead of the JServ file. I start tomcat and I start Apache, Ap

Re: Apache + Tomcat configuration

2001-04-06 Thread Pae Choi
ur own directory "mytest") > >-Original Message- >From: Zhengan Cai [mailto:[EMAIL PROTECTED]] >Sent: 06 April 2001 15:00 >To: Apache/Tomcat >Subject: Apache + Tomcat configuration > > >Hi, everyone: > >I am trying to setup Apache + Tomcat to

RE: Apache + Tomcat Configuration

2001-04-06 Thread David DELGRANCHE
t are more open-minded than you are! David. -Message d'origine- De: Michael Wentzel [SMTP:[EMAIL PROTECTED]] Date: vendredi 6 avril 2001 15:20 A: '[EMAIL PROTECTED]' Objet: RE: Apache + Tomcat Configuration > I am trying to setup Apache + Tomcat to ru

RE: Apache + Tomcat Configuration

2001-04-06 Thread Michael Wentzel
> I am trying to setup Apache + Tomcat to run JSP and Servlets > on Win. 2000. I > am using Apache 1.3.19, and Tomcat 3.2.1. > > I created my own directory in > %TOMCAT_HOME%/webapps/mytest, copied the structure from > %TOMCAT_HOME%/webapps/examples such as WEB-INF, META-INF I put my > servl

Apache + Tomcat configuration

2001-04-06 Thread Zhengan Cai
Hi, everyone: I am trying to setup Apache + Tomcat to run JSP and Servlets on Win. 2000. I am using Apache 1.3.19, and Tomcat 3.2.1. I created my own directory in %TOMCAT_HOME%/webapps/mytest, copied the structure from %TOMCAT_HOME%/webapps/examples such as WEB-INF, META-INF I put my servlet

Apache + Tomcat Configuration

2001-04-06 Thread Zhengan Cai
Hi, everyone: I am trying to setup Apache + Tomcat to run JSP and Servlets on Win. 2000. I am using Apache 1.3.19, and Tomcat 3.2.1. I created my own directory in %TOMCAT_HOME%/webapps/mytest, copied the structure from %TOMCAT_HOME%/webapps/examples such as WEB-INF, META-INF I put my servlet

** Apache Tomcat Configuration on Linux - Error while doing the same: Needhelp **

2001-04-02 Thread Prashantha . Marathe
Hi, I am trying to configure Tomcat+Apache on Linux. I am having some problems while configuring the same. Please help resolving following problem. Apache:error_log says Tue Apr 3 12:42:41 2001] [emerg] (2)No such file or directory: Error while opening the workers Tomcat : mod_jk.log says [jk

Re: Help with Apache-Tomcat configuration

2001-03-15 Thread Gerard BORREILL
Sorry for this late answer but my company was moving. I think you have now the answer. As far as I remember DSO modules are modules that are loaded dynamically. This allows to add or remove a module without stopping apache. mod_jk is a DSO module. To compile apache with DSO I am using ./con

RE: Help with Apache-Tomcat configuration

2001-03-12 Thread John Towell
Cc: [EMAIL PROTECTED] Sent: 3/12/01 7:40 AM Subject: Re: Help with Apache-Tomcat configuration Hum, Well I do not remember exactly the error message, but I remember that if you do not compile Apache to support DSO an error like this one may occur: Apache does not recognize the module as an apa

Re: Help with Apache-Tomcat configuration

2001-03-12 Thread Gerard BORREILL
Hum, Well I do not remember exactly the error message, but I remember that if you do not compile Apache to support DSO an error like this one may occur: Apache does not recognize the module as an apache module. So the solution is to compile Apache with DSO support. I hope this helps, Gérard

Help with Apache-Tomcat configuration

2001-03-12 Thread Martin Mauri
Hi! I'm trying to configure Apache with Tomcat using mod_jk as the adapter, and then I write it in the httpd.conf but when I install the mod_jk.so and start Apache, I get the following error: API module structure 'jk_module' in file /etc/httpd/modules/mod_jk.so is garbled - perhaps this is not a

Re: Help with Apache-Tomcat configuration

2001-03-10 Thread RameshBabu R Muthuvel
Hi Installing mod_jserv 1)Uncompress the download in some sensible place. 2)Copy the "ApacheModuleJServ.dll" file into the Apache modules directory ( in our case c:\program files\apache group\apache\modules directory) 3)Start tomcat and keep it running 4)Edit the "httpd.conf" file ( in ou

RE: Help with Apache-Tomcat configuration

2001-03-10 Thread John Towell
Also - for additional mod_jk information and binaries, see: http://willow.cc.edu/docs/adminguide/ -Original Message- From: John Towell To: '[EMAIL PROTECTED]' Sent: 3/10/01 9:02 AM Subject: RE: Help with Apache-Tomcat configuration This happened to me - exactly the same mes

RE: Help with Apache-Tomcat configuration

2001-03-10 Thread John Towell
To: [EMAIL PROTECTED] Sent: 3/9/01 2:48 PM Subject: Help with Apache-Tomcat configuration Hi! I'm trying to configure Apache with Tomcat using mod_jk as the adapter, and then I write it in the httpd.conf but when I install the mod_jk.so and start Apache, I get the following error: API m

Help with Apache-Tomcat configuration

2001-03-09 Thread Martin Mauri
Hi! I'm trying to configure Apache with Tomcat using mod_jk as the adapter, and then I write it in the httpd.conf but when I install the mod_jk.so and start Apache, I get the following error: API module structure 'jk_module' in file /etc/httpd/modules/mod_jk.so is garbled - perhaps this is not a

bug or wrong Apache+Tomcat configuration???

2001-03-07 Thread Herchel Wojciech
Hi all! I've encountered following problem. i have a protected area defined in my web.xml file: Protected Area /protected/* DELETE GET POST PUT test develope agent under /protected I have serveral jsp files and they

Apache/Tomcat configuration with IRIX 6.5.x

2001-03-01 Thread Craig Bush
Just wanted to let everyone running Irix know some shortcuts to a successful installation of Apache 1.3.19 Tomcat 3.3m1 Need copy of GNU make. Irix make doesn't work. Back it up. Apache... Need to do: ./configure \ --prefix=/usr/local/apache \ --enable-rule=SHARED_CORE \ --enable-module=so ma

Apache Tomcat Configuration

2001-02-05 Thread Mike Glose
Hello, Do you have a list of companies who are using the Apache/Tomcat configuration in their production environment? I would like to find some references at the technical and executive level. Thank you, --- Mike Glose Unix System Administration Requisite Technology 303-474-8146 Cell 303-888

Apache/Tomcat Configuration

2001-01-11 Thread mbatcheller
I have installed and configured Apache and Tomcat according to your documentation. I have tested some of the examples that were included in the installations. JSPs will load and work. Servlets will load and work. I want to store my servlets in a directory other than "/webapps//Web-inf/classes"

Re: Apache-Tomcat configuration problems: PLEASE HELP

2000-12-18 Thread Dave Smith
lt;[EMAIL PROTECTED]> Sent: Monday, December 18, 2000 9:43 AM Subject: Apache-Tomcat configuration problems: PLEASE HELP > Hi, I've been trying to get Tomcat and Apache configured to avoid the need > to reference the port number in the URL. Instead of > http://localhost:8080/,

Apache-Tomcat configuration problems: PLEASE HELP

2000-12-18 Thread Dave Emerson
Hi, I've been trying to get Tomcat and Apache configured to avoid the need to reference the port number in the URL. Instead of http://localhost:8080/, I want to be able to say http://localhost/servlet/. Isn't that what mod_jk is supposed to do for me? At the moment I just like to get the s

apache - tomcat configuration- urgent

2000-12-08 Thread Kotturi, Rajendra
Hi, I have an application which consists of pure Java Servlets (not the jsp) . I would like the request for these .class servlets to be sent tomcat server by the apache. How should I configure my Tomcat & apache for doin this. And where should I locate these class files. And what will be my