RE: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-13 Thread Larry Isaacs

Which version of Apache?  I think there was one version
that wasn't happy with back slashes '\'.  You could try
forward slashes '/'.

Larry

 -Original Message-
 From: Adi Naren [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, December 12, 2001 8:01 PM
 To: [EMAIL PROTECTED]
 Subject: Tomcat 3.3, Apache 1.3.22, and Windows NT
 
 
 Hi,
 
 After configuring the necessary files in TOMCAT_HOME/conf and 
 TOMCAT_HOME/webapps, I was able to start TOMCAT. Apache also 
 runs fine when 
 working alone.  WHen I try to integrate the two on Windows 
 NT, apache does 
 not start and comes with an error,
 
 ...unable to find tomcat.conf...
 
 of course, there is an Include directive in apache's httpd.conf and 
 started Tomcat ahead of Apache.
 
 The include statement is as follows:
 
 Include D:\jakarata-tomcat-3.3\conf\jserv\tomcat.conf
 
 upon checking the folder, the file exists.
 
 Is there anything I am missing? Will appreciate your feedback.
 
 Looking forward to hearing from you,
 
 rgds,
 
 Naren
 
 
 _
 Send and receive Hotmail on your mobile device: http://mobile.msn.com
 
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-13 Thread Justin Rowles

 Which version of Apache?  I think there was one version
 that wasn't happy with back slashes '\'.  You could try
 forward slashes '/'.

AFAIK, all versions require use of / not \ which is treated as an escape
character (as per Unix text specs).

Oh, if only everyone would come over to the one true OS - UNIX - all this
difficulty would be gone!

J.
-- 
You're only jealous cos the little penguins are talking to me. 



***
For more information on Ordnance Survey products and services,
visit our web site at http://www.ordnancesurvey.co.uk
***




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-13 Thread Larry Isaacs

I think from around Apache 1.3.12, it would tolerate
back slashes in file names on Windows systems.  I believe
it may have been Apache 1.3.14 that had a bug such that
drive letter:\rest of path wasn't recognized as being
an absolute path and try to use it as a relative path.
Still, it is better to use Apache's preference, '/'.

Larry

 -Original Message-
 From: Justin Rowles [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, December 13, 2001 9:02 AM
 To: 'Tomcat Users List'
 Subject: RE: Tomcat 3.3, Apache 1.3.22, and Windows NT
 
 
  Which version of Apache?  I think there was one version
  that wasn't happy with back slashes '\'.  You could try
  forward slashes '/'.
 
 AFAIK, all versions require use of / not \ which is treated 
 as an escape
 character (as per Unix text specs).
 
 Oh, if only everyone would come over to the one true OS - 
 UNIX - all this
 difficulty would be gone!
 
 J.
 -- 
 You're only jealous cos the little penguins are talking to me. 
 
 
 
 ***
 For more information on Ordnance Survey products and services,
 visit our web site at http://www.ordnancesurvey.co.uk
 ***
 
 
 
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-13 Thread Justin Rowles

 I think from around Apache 1.3.12, it would tolerate
 back slashes in file names on Windows systems.  I believe
 it may have been Apache 1.3.14 that had a bug such that
 drive letter:\rest of path wasn't recognized as being
 an absolute path and try to use it as a relative path.
 Still, it is better to use Apache's preference, '/'.

I have been caught out on this, even on recent versions, by specifying:

d:\address\

in the file (by accident).  The last two chars - \ - are then interpreted
as an escaped double quote, leading to errors such as:

Could not locate file d:/addresstest.jsp

This took me a good while to work out!  Use /!

Justin.
-- 
You're only jealous cos the little penguins are talking to me. 



***
For more information on Ordnance Survey products and services,
visit our web site at http://www.ordnancesurvey.co.uk
***




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-13 Thread Adi Naren

Thanks, folks,

I got them working today morning!!

ApacheModuleJServ.dll was not there in either %APACHE_HOME%\modules or 
%TOMCAT_HOME%\modules folder.

another reason is:
I gave the wrong path of tomcat.conf file


One guy was telling me that Tomcat does not work on WINDOWS!! Isn't that 
ridiculous?? LOL!!

Rider for newbies:
If apache and tomcat can start on your machines independently:

1) If tomcat does not start after starting tomcat, please check for the 
presence of the module mentioned above.

2) Please disable appropriate comments in tomcat.conf for loading the above 
module. (Comment the Unix part and uncomment the Windows part)

i.e. LoadModule jserv_module modules/ApacheModuleJServ.dll
should be used instead of
LoadModule jserv_module libexec/mod_jserv.so

later, folks.
Naren
From: Larry Isaacs [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Subject: RE: Tomcat 3.3, Apache 1.3.22, and Windows NT
Date: Thu, 13 Dec 2001 07:45:51 -0500

Which version of Apache?  I think there was one version
that wasn't happy with back slashes '\'.  You could try
forward slashes '/'.

Larry

  -Original Message-
  From: Adi Naren [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, December 12, 2001 8:01 PM
  To: [EMAIL PROTECTED]
  Subject: Tomcat 3.3, Apache 1.3.22, and Windows NT
 
 
  Hi,
 
  After configuring the necessary files in TOMCAT_HOME/conf and
  TOMCAT_HOME/webapps, I was able to start TOMCAT. Apache also
  runs fine when
  working alone.  WHen I try to integrate the two on Windows
  NT, apache does
  not start and comes with an error,
 
  ...unable to find tomcat.conf...
 
  of course, there is an Include directive in apache's httpd.conf and
  started Tomcat ahead of Apache.
 
  The include statement is as follows:
 
  Include D:\jakarata-tomcat-3.3\conf\jserv\tomcat.conf
 
  upon checking the folder, the file exists.
 
  Is there anything I am missing? Will appreciate your feedback.
 
  Looking forward to hearing from you,
 
  rgds,
 
  Naren
 
 
  _
  Send and receive Hotmail on your mobile device: http://mobile.msn.com
 
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]





_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Tomcat 3.3, Apache 1.3.22, and Windows NT

2001-12-12 Thread Galbayar

you must edit workers.properties file
- Original Message -
From: Adi Naren [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, December 13, 2001 09:00
Subject: Tomcat 3.3, Apache 1.3.22, and Windows NT


 Hi,

 After configuring the necessary files in TOMCAT_HOME/conf and
 TOMCAT_HOME/webapps, I was able to start TOMCAT. Apache also runs fine
when
 working alone.  WHen I try to integrate the two on Windows NT, apache does
 not start and comes with an error,

 ...unable to find tomcat.conf...

 of course, there is an Include directive in apache's httpd.conf and
 started Tomcat ahead of Apache.

 The include statement is as follows:

 Include D:\jakarata-tomcat-3.3\conf\jserv\tomcat.conf

 upon checking the folder, the file exists.

 Is there anything I am missing? Will appreciate your feedback.

 Looking forward to hearing from you,

 rgds,

 Naren


 _
 Send and receive Hotmail on your mobile device: http://mobile.msn.com


 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]