RE: tomcat 3.2 b8

2000-11-26 Thread Saurabh Shukla
YOU HAVE TO MENTION it in httpd.conf(Apache), can be done away with at tomcat level.. in tomcat just map the contexts. You need to have different web.xml in each of your application root(Web-INF) IF you are starting two different tomcat's then you obvously will be needing to different

RE: mapping zone

2000-11-26 Thread Saurabh Shukla
You can just do it with web.xml . add something like this... in your web.xml. Shuklx servlet-mapping servlet-name AccessServlet /servlet-name url-pattern /myAppl/* /url-pattern /servlet-mapping -Original Message- From:

RE: Shutdown problem

2000-11-26 Thread Saurabh Shukla
Even i get problems with shutting down tomcat both on Linux and in Windows NT machine, you can just kill the damn window. :-) -Original Message-From: Tomas Marek [mailto:[EMAIL PROTECTED]]Sent: Sunday, November 26, 2000 12:28 PMTo: TomcatSubject: Shutdown problemGuys, I

Re: mod_jk

2000-11-26 Thread POLIKI
i am using with apache what i must to include in the httpd.conf? the mod_jk.conf file? the tomcat-apache.conf file? please say me or send a example thanks carlos - Original Message - From: "Saurabh Shukla" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 7:31 AM

RE: mod_jk

2000-11-26 Thread Saurabh Shukla
mod_jk should be included, go though it to add your changes. Shuklix -Original Message- From: POLIKI [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 26, 2000 3:43 PM To: [EMAIL PROTECTED] Subject: Re: mod_jk i am using with apache what i must to include in the httpd.conf? the

Re: Shutdown problem

2000-11-26 Thread Tomas Marek
It might seem unbelievable but I fixed it up myself by just setting JAVA_HOME in autoexec.bat with full path incl. drive name (C:\jdk1.3). What u reckon? Saurabh Shukla wrote: Even i get problems with shutting down tomcat both on Linux and in Windows NT machine, you can just kill the damn

RE: mod_jk

2000-11-26 Thread Michael H. La Budde
The file you want to incude in your httpd.conf is actually path-to-tomcat/conf/mod_jk.conf-auto Make sure that you have mentioned all your contexts in your server.xml file and that you startup tomcat first (since the above file gets generated each time you startup tomcat). If that file

Re: no subject

2000-11-26 Thread ricksmth
I would use 3.2 for virtual hosting and from the mail I've seen on this list is stable enough. Rick [EMAIL PROTECTED] wrote: Can Virtual host be used under Tomcat 3.1? If not, how stable is Tomcat 3.2 in the opinions of those whom have actual used it? I know vhost can be used on 3.2 but

RE: Shutdown problem

2000-11-26 Thread CPC Livelink Admin
It is still the environment problem. The 2816 setting is just an estimate, since it will be affected by other environment variable you have set, what paths you choose to put things in etc. Increase that number by a lot (be absurd in your first test) and try to shutdown.You should not see

RE: Getting servletinputStream from a specific field of the posted form?

2000-11-26 Thread CPC Livelink Admin
You need to get a multi-part post data handler. There is one at www.servlets.com (the O'Reilly servlets site) which is not wuite free (must buy the book to use it commercially), but does work well. If you browse the archive, (http://marc.theaimsgroup.com/?l=tomcat-userr=1w=2 is one archive),

Re: mod_jk

2000-11-26 Thread Julio Serje (@canada.com)
Hola, Carlos You should only append the following line to your http.conf: include c:/tomcat/conf/tomcat-apache.conf Note: I am assumming you are running Tomcat 3.1, on a win machine. Similar settings must be arranged for other confs. Julio -- Suerte con eso, Carlos. Si quieres,

Re: Tomcat Cache

2000-11-26 Thread Julio Serje (@canada.com)
I would expand a bit what Serg is just saying: If you are modifying a jsp file that is *included* JSP will not "detect" the change, as it only looks for the main page date. Just change the date of the main page (modifiyng it , or with a touch command) and that should work. Also(I know it may

Apache and Tomcat

2000-11-26 Thread Joseph Wong
What is the minimum version of Apache that can be integrated with Tomcat 3.1? Joseph _ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com

How to disable directory listing in Tomcat?

2000-11-26 Thread Joseph Wong
I used Tomcat and Apache to run jsp where I mapped /jsp to Tomcat to handle jsp program, so I can call abc.jsp by http://ip-address/jsp/abc.jsp through browser. However, when I call http://ip-address/jsp/ through browser, a list of jsp programs under /jsp dirctory were listed. How to disable

JSP session bean in Tomcat

2000-11-26 Thread Joseph Wong
I write a jsp program makes use of a session bean to keep session info and test it with IE5.5. The result is it's able to keep session info but it behaves different from running in other web server, e.g. weblogic, iPlanet. The difference is two openned browsers are treated as two different

Re: How to disable directory listing in Tomcat?

2000-11-26 Thread Julio Serje (@canada.com)
Hi, Joseph, You can: a) create an index.jsp page for your directory, or b) create (or edit, if you have it already...) a web.xml file for your webapp and alter the welcome-file-list section: welcome-file-list welcome-file index.jsp /welcome-file

Re: Apache and Tomcat

2000-11-26 Thread Julio Serje (@canada.com)
Probably 1.3.6, it supports the AJP12 protocol (for Jserv) Julio - Original Message - From: Joseph Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 10:30 AM Subject: Apache and Tomcat What is the minimum version of Apache that can be integrated with Tomcat

Re: mod_jk

2000-11-26 Thread Landaluze Produktions IS - Carlos
if i use mod_jk in a linux with tomcat and apache: what i must to include in the apache conf file? the tomcat-apache.conf or / and the mod_jk-auto.conf? thanks carlos - Original Message - From: "Saurabh Shukla" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000 11:24

Re: How to disable directory listing in Tomcat?

2000-11-26 Thread Joseph Wong
But how to disable directory listing in Tomcat without creating extra .jsp and .html, e.g. index.jsp, index.html.. I remembered that if I disable Index Options in Apache then the following message will be displayed if I try to browse directory . Forbidden You don't have permission to

Sample Project Won't Build

2000-11-26 Thread Richard Herrell
Hi, I've successfully installed JDK 1.2.2, and Tomcat, and Ant on Red Hat 6.2. I can compile and run a HelloWorld class with javac, and all of the samples included with the server work fine. However, the sample project won't compile for me. I've read through the documentation in

Need some basic information

2000-11-26 Thread Jim Bartram
(Disclaimer: I've spent hours rummaging in FAQs, Archives, and other documents, and tried countless suggestions gleaned thereby. No luck.) I've successfully installed Tomcat 3.1 and Apache on NT 4.0, and made them work together to the extent that I can use the examples. However, I want to do

Tomcat/Apache/Mod_Rewrite

2000-11-26 Thread michael grossniklaus
Yo! I'm trying to use Tomcat together with Mod_Rewrite on an Apache/1.3.14 under W2K. My configuration (httpd.conf) is as follows: # Include Tomcat include "c:/progra~1/apache~1/jakarta-tomcat/conf/tomcat.conf" # Rewriting IfModule mod_rewrite.c RewriteEngine on RewriteRule ^/(.*)

Re: Need some basic information

2000-11-26 Thread Ken
The simplest way is to just use the existing setup. compile your servlets and place them in $tomcat-root/examples/web-inf/classes/ Then you can access them from the /examples URL Ken - Original Message - From: "Jim Bartram" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November

RE: Tomcat Cache

2000-11-26 Thread Saurabh Shukla
I do not agree with this, as all the files in the work directory are being deleted, it will recomplile the jsp's and so that changes should have been reflected. The problem might be with your browser settings, and it might be taking the page from the cache. Changes your browser settings to look

RE: How to disable directory listing in Tomcat?

2000-11-26 Thread Saurabh Shukla
1) Give a welcome file in your web.xml (if all your requests in /jsp goes to tomcat. 2) Check the "options" in Directory directive(Apache documentation). Try something this in your httpd.conf(it might do the job for you) DirectoryMatch /jsp AllowOverride None

RE: mod_jk

2000-11-26 Thread Saurabh Shukla
rename the mod_jk-auto.conf and include the renamed file in your httpd.conf Shuklix -Original Message- From: Landaluze Produktions IS - Carlos [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 26, 2000 10:21 PM To: [EMAIL PROTECTED] Subject: Re: mod_jk if i use mod_jk in a linux with

RE: Increasing memory problem

2000-11-26 Thread Saurabh Shukla
YOu can also try Thread Pooling in tomcat, it might be help. SHuklix -Original Message- From: Julio Serje (@canada.com) [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 26, 2000 10:08 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Increasing memory problem Hi, Kai. The

RE: mod_jk

2000-11-26 Thread Saurabh Shukla
NO!!! :-) it is not a strict NO.. you can include it. but take care to remove all the modjsev directives. Shuklix and i dont must use the tomcat-apache.conf file? - Original Message - From: "Michael H. La Budde" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, November 26, 2000

RE: Tomcat/Apache/Mod_Rewrite

2000-11-26 Thread Saurabh Shukla
Add these lines. RewriteEngine on RewriteLog "PATH/apache-rewrite.log" RewriteLogLevel 6 (change the run level as per you needs). This is generate a log file "apache-rewrite.log" in PATH directory. SHuklix -Original Message- From: michael grossniklaus [mailto:[EMAIL PROTECTED]]