SSL ApacheServer-Tomcat

2002-09-20 Thread Günter Kukies
Hi, I have a Apache Server 1.3.20 and a Tomcat 4.03 and mod_jk from Johns HowTo running on the same box. Open_SSL and mod_jk is setup for Apache Server. For Tomcat a keystore with a Testcertificate is available. If tomcat is running alone :8443 the SSL connection to my webapp is running well.

Dumb Question ../servlet/com.justatest.test.MyServlet error

2002-09-20 Thread John-Paul Delaney
Hello List... I've created the directory path: tomcat-rootwebapps/jat/WEB-INF/classes/com/justatest/test/ but I get an error when I try to run the oreilly servlet from URL: http://localhost:8080/jat/servlet/com.justatest.test.InitSnoop The same servlet will run ok from URL:

RE: Dumb Question ../servlet/com.justatest.test.MyServlet error

2002-09-20 Thread Miguel Angel Mulero Martinez
Maybe the InitSnoop.java don't start with package com.justatest.test; -Mensaje original- De: John-Paul Delaney [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 20 de septiembre de 2002 12:43 Para: [EMAIL PROTECTED] Asunto: Dumb Question ../servlet/com.justatest.test.MyServlet error

Re: installing and running tomcat 4.1 on linux

2002-09-20 Thread Kwok Peng Tuck
Yeah, there is a start up script in /etc/init.d/ , but on some systems it doesn't add itself using chkconfig. You can check if it has done so using /sbin/chkconfig --list | more Look for tomcat4. If you want it to autostart during bootup, do this /sbin/chkconfig --add tomcat4 then start it for

AW: two instances of tomcat (in diferent ports) on the same machi ne

2002-09-20 Thread Ralph Einfeldt
We install different versions of tomcat like this: /usr/local/java/tomcat-4.0.3 /usr/local/java/tomcat-4.1.10 For each site we have something like this: /www/online/site /log dirctory for the log file /conf web.xml server.xml and other files that contain the site specific

Multiple Realms and JSP tags

2002-09-20 Thread Jean-Baptiste Onofré
Hello all, i have two questions : - how can i define a Realm foreach webapps ? Example : i have a PostgreSQL JDBC Realm used by webapp A i would like to have another MySQL JDBC Realm used by webapp B - where can i find documentation about all standard JSP tags

AW: Multiple Realms and JSP tags

2002-09-20 Thread Ralph Einfeldt
http://java.sun.com/products/jsp/syntax/1.2/syntaxref12.html -Ursprüngliche Nachricht- Von: Jean-Baptiste Onofré [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. September 2002 09:12 An: [EMAIL PROTECTED] Betreff: Multiple Realms and JSP tags - where can i find documentation

AW: How can I achieve thread safe for context attributes?

2002-09-20 Thread Ralph Einfeldt
synchronized (cxt) { CurrentUsers cs = (CurrentUsers)cxt.getAttribute(WebKeys.CurrentUsers); String user = (String)session.getAttribute(WebKeys.UserID); cs.remove(user); // or other modification // cxt.setAttribute(WebKeys.CurrentUsers, cs); // This one is not needed, as cs is

RE: Multiple Realms and JSP tags

2002-09-20 Thread Miguel Angel Mulero Martinez
Include the realm ... inside the context of each webapp. -Mensaje original- De: Jean-Baptiste Onofré (Nanthrax) [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 20 de septiembre de 2002 9:12 Para: [EMAIL PROTECTED] Asunto: Multiple Realms and JSP tags Hello all, i have two questions :

RE: Struts 1.0.2 Examples busted in new Tomcat 4.1.10, fine in 4.0.4

2002-09-20 Thread Geddes, Mark (ANTS)
Not sure if this is the case for you, but on windows, if your installation is on a different drive to your web application then Jasper cannot load the libraries. Put your web-app under tomcat's webapps directory and you should be ok. This has been fixed but you will need to search the archives to

Re: IE browser doesn't give error

2002-09-20 Thread David Cassidy
Robert i think you are missing what he's asking. (Or I am...) Tomcat / Apache will not be able to send **ANY** error message as he has unplugged the network cable. the problem ( or bug ) that he has noticed is that if he clicks on an HREF when the servers not there ( ie unplugged turned off

Strange Behaviour with Character Encoding with tomcat 4.0.3 4.1.10

2002-09-20 Thread Sunny L. S. Chan
Hi all, I have a working multiple languges website which is running on tomcat 4.0.3. (i.e. ISO-8859-1 (English) / Big5 (trad CHinese) / Simp Chinese / Japanese / French / Thai) I manage the CharacterSet Encoding by using the method response.setContentType() for all the languages; When I

RE: web.xml

2002-09-20 Thread Vincent . Gaboriau
Hello, I have found your error... Your config files are correct! The error became from the HelloWorld servlet. If you enter on the code, to see what it really do ;-) you can see that it use a LocalString properties file. Your servlet cannot function because this file missing. That's

RE: Apache2 and Tomcat4 on different boxes

2002-09-20 Thread Vincent . Gaboriau
I have never run Tomcat under an Unix like OS, so I don't now. The host neptune.broward.edu is declared in the network configuration of the machine? ping neptune.broward.edu works? -Message d'origine- De : Raj Mettai [mailto:[EMAIL PROTECTED]] Envoy? : jeudi 19 septembre 2002 22:30 ? :

Realtime Log File Viewer

2002-09-20 Thread Nicholas Orr
Hi Is there a way to see additions made to the log files in real time? Like is there someway you could get notified when something has been written to a log file? Or can you some how hook into catilina, so that when ever ServletContext.log(log something) is fired you get the string as well? I'm

RE: Realtime Log File Viewer

2002-09-20 Thread Barney Hamish
Is your server on Windows or *nix? Have you tried tail? That allows you to view the last X lines of the log in real-time. Hamish -Original Message- From: Nicholas Orr [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 10:48 AM To: Tomcat Mailing List Subject: Realtime Log

RE: Realtime Log File Viewer

2002-09-20 Thread Nicholas Orr
Sorry- Windows 2k pro. Tomcat 4.1.10 Tail? What is this for. Nicholas Orr -Original Message- From: Barney Hamish [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 September 2002 6:51 PM To: 'Tomcat Users List' Subject: RE: Realtime Log File Viewer Is your server on Windows or *nix? Have

AW: Realtime Log File Viewer

2002-09-20 Thread Ralph Einfeldt
That's a unix/linux real time file viewer. -Ursprüngliche Nachricht- Von: Nicholas Orr [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. September 2002 10:52 An: 'Tomcat Users List' Betreff: RE: Realtime Log File Viewer Tail? What is this for. -- To unsubscribe, e-mail:

RE: Realtime Log File Viewer

2002-09-20 Thread Vincent . Gaboriau
I have heard that the tomcat's stdout can be redirected in the log event manager of windows. But I don't know how to made that. -Message d'origine- De : Nicholas Orr [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 20 septembre 2002 10:52 À : 'Tomcat Users List' Objet : RE: Realtime Log File

RE: Realtime Log File Viewer

2002-09-20 Thread Nicholas Orr
Ok, know of any widows ones? Also what does AW: stand for? Nicholas Orr -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 September 2002 6:58 PM To: Tomcat Users List Subject: AW: Realtime Log File Viewer That's a unix/linux real time file viewer.

RE: Realtime Log File Viewer

2002-09-20 Thread Geddes, Mark (ANTS)
wintail -Original Message- From: Nicholas Orr [mailto:[EMAIL PROTECTED]] Sent: 20 September 2002 10:00 To: 'Tomcat Users List' Subject: RE: Realtime Log File Viewer Ok, know of any widows ones? Also what does AW: stand for? Nicholas Orr -Original Message- From: Ralph Einfeldt

AW: Realtime Log File Viewer

2002-09-20 Thread Ralph Einfeldt
Here is a tail version for windows: http://www.rhazes.com/cgi-bin/Utilitiy_0.asp (Google is our friend) -Ursprüngliche Nachricht- Von: Nicholas Orr [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. September 2002 10:52 An: 'Tomcat Users List' Betreff: RE: Realtime Log File Viewer

UserTransaction(JTA) in Tomcat 4.1.10..??

2002-09-20 Thread sathya
hi, I am trying to implement JTA in my project...Is this possible in Tomcat 4.1.10. My database is SQL Server .Can somebody tell if this is possible and if so how we can get an instance of UserTransaction... I tried the same with Tomcat 4.0, but i was getting the error Cannot Create

RE: Realtime Log File Viewer

2002-09-20 Thread Nicholas Orr
Thanks, I was just searching for wintail, the base site is www.wintail.com. -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 September 2002 7:02 PM To: Tomcat Users List Subject: AW: Realtime Log File Viewer Here is a tail version for windows:

Can anyone help with an SSL problem?

2002-09-20 Thread Christopher Watson
Dear All, Can anyone offer some advice - sorry to keep asking, but so far I've had no reply :-( I am using ISAPI redirector to serve JSP/servlet resources through IIS I would like some contexts to _require_ SSL (https) to be used, and leave others free to use http. I am able require _all_

JAMES Tomcat

2002-09-20 Thread Thomas, Stefan
Hi all, I'm a newbie to Tomcat and want to know if it is possible to include Jakarta Project JAMES to the Tomcat Engine. That means if I could start up JAMES with Tomcat. I just tried to make changes to the server.xml and modules.xml but got an exception. Can anyone help me with this

SEVERE: Parse Fatal Error at line 70 column 9: The string -- is not permitted within comments.

2002-09-20 Thread Fathi Ben Nasr
Hello, I have upgraded from tomcat 4.0.3 on redhat 7.3 and 4.0.4 on mandrake 8.2 to 4.1.10 on both mandrake and redhat using rpms from jakarta.apache.org I have reviewed all config files (those under /etc and those under /var/tomcat4/conf) and adapted them to my systems but when I try to

URL patterns + directory listings

2002-09-20 Thread adi
Hello, I encountered a very strange problem with servlet mappings. I have the following entry in my web.xml file : servlet servlet-nameMyDefaultServlet/servlet-name servlet-classorg.apache.catalina.servlets.DefaultServlet/servlet-class init-param param-namedebug/param-name

AW: Struts 1.0.2 Examples busted in new Tomcat 4.1.10, fine in 4.0.4

2002-09-20 Thread Patrick Dockhorn
Well I'm definitely running it on Windows, although I did copy the struts war file into Tomcat's webapp dir (where it was subsequently unpacked by tomcat). I'll try the next release of the 4.1.x branch anyway - thanks. patrick -Ursprüngliche Nachricht- Von: Geddes, Mark (ANTS)

Which Tomcat version for production environment ?

2002-09-20 Thread Simon M Pascoe
Hi, hopefully a simple question, first some background. I'm about to install Tomcat with mod_jk and Apache 1.3.19 on a server running RedHat Advanced Server 2.1 for production use. I have already setup a very similar test box running Tomcat 4.0.4. Though it hasn't been under much of a load it

RE: Struts 1.0.2 Examples busted in new Tomcat 4.1.10, fine in 4.0.4

2002-09-20 Thread Miguel Angel Mulero Martinez
This bug happens when Tomcat isn't installed on drive C:. There's a patch in bugzilla for this issue. -Mensaje original- De: Patrick Dockhorn [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 20 de septiembre de 2002 12:40 Para: 'Tomcat Users List' Asunto: AW: Struts 1.0.2 Examples busted

default servlet mapping

2002-09-20 Thread adi
Hello, Is it possible to map the default servlet to a pattern other than / ? or is it hard-coded in org.apache.catalina.servlets.DefaultServlet ? Thanks, Adi --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.372 / Virus Database:

Transfer encoding chunked

2002-09-20 Thread c . viehl
Hi, recently I upgraded to Tomcat 4.1.10. I noticed that it is using transfer encoding chunked automagically for some content types (image/tiff, audio/x-wav and probably some more). Is there any way to avoid this behavior? Thanks in advance for any help, Clemens Viehl -- To unsubscribe,

web.xml and manager application

2002-09-20 Thread info
Hi, using Tomcat 4.0.1 on a Linux Box (SuSE 7.3) with JDK 1.3.1. When I change the web.xml of a webapp and want to reload that webapp using the manager application the web.xml-file is not parsed again. Only when I restart the container. Is that normal? Is there a soulution? It is quite unhandy!

Re: Transfer encoding chunked

2002-09-20 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: Hi, recently I upgraded to Tomcat 4.1.10. I noticed that it is using transfer encoding chunked automagically for some content types (image/tiff, audio/x-wav and probably some more). Is there any way to avoid this behavior? You need to set the content-length of

RE: Transfer encoding chunked

2002-09-20 Thread c . viehl
Hi, You need to set the content-length of the response before it is committed (or have the response fit in the 4K buffer). Thanks for the quick response! I'll check this! Bye Clemens -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: SSL support in 4.1.10

2002-09-20 Thread John Hughes
Has anyone got input on this. BTW got Tomcat working with SSL (or rather TLS!) client authentication. There is an extra step one needs (that's not documented in the Tomcat SSL How to guide). So now we have several servlets communicating with each other, over the SSL link, performing some OASIS

RE: Which Tomcat version for production environment ?

2002-09-20 Thread jon wingfield
You've had 4.0.4 in a test environment and is stable. Deploy it. It's the most stable of the 4.0.x tomcat tree. Then put 4.1.x in the test environment and if is stable after system/uat testing migrate your production environment to that release of tomcat. There are a number of implementation

RE: Listener directive in Host conrtainer ???

2002-09-20 Thread Turner, John
Yes. Do you want Tomcat to generate the mod_jk.conf file or not? If you do, you need the Listener element. Then restart Tomcat, and take the mod_jk.conf file that is generated and copy it to the Apache box. The Listener element doesn't care which host has which service...all it does is

Re: SSL support in 4.1.10

2002-09-20 Thread Mehmet Birgi
Hi all, I also got Tomcat working with client auth. last week. What I believe is not documented in the docs is how Tomcat authenticates the client certificates, i.e. the truststore used by Tomcat. AFAIK, the truststore cannot be specified in the server.xml, and Tomcat just uses the trusstore

RE: Problem compiling JSP in Tomcat

2002-09-20 Thread Turner, John
There is a specific process to use when an app is developed with OC4J and then moved to Tomcat. Developing with OC4J is not transparently portable to Tomcat. Check the Oracle JDeveloper site for the documentation on what to do when you want to deploy an app developed within JDeveloper/OC4J to

RE: HEAD request to JSP stuck in a 'W' state

2002-09-20 Thread Dmitry Letin
I have similar problems. (Apache 1.3.26, tomcat 4.0.4 / tomcat4.1.10 / mod_jk) Usually user requests (GET, POST) are processed under 0.2 seconds, but sometimes It takes hundreds of seconds to process the same request. Dmitry -Original Message- From: John Moore [mailto:[EMAIL

RE: Native parts of connectors ?

2002-09-20 Thread Turner, John
Completely empty. John -Original Message- From: Chakradhar Tallam [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 1:53 AM To: 'Tomcat Users List' Subject: RE: Native parts of connectors ? have a look in this link

RE: Native parts of connectors ?

2002-09-20 Thread Turner, John
I'm not sure exactly what you mean by native parts but I will assume you mean the Apache modules. I've collected various connector binaries (RedHat, Solaris, AIX, Win32) here: http://www.johnturner.com/howto John -Original Message- From: Vjeran Marcinko [mailto:[EMAIL PROTECTED]]

RE: Tomcat performance problems after a while

2002-09-20 Thread Dmitry Letin
It will not have. I have the same problems with tomcat 4.0.4 and 4.1.10 -Original Message- From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 9:18 PM To: Tomcat Users List Subject: Re: Tomcat performance problems after a while Consider moving to tomcat 4,

RE: Native parts of connectors ?

2002-09-20 Thread Stephen . Thompson
I just looked under the k2/nightly/win32/ and found several .dlls. Regards, Stephen. -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: 20 September 2002 13:03 To: 'Tomcat Users List' Subject: RE: Native parts of connectors ? Completely empty. John

RE: installing and running tomcat 4.1 on linux

2002-09-20 Thread Turner, John
I don't use RPMs, but I've posted some HOWTOs that might be of some help, at least as background: http://www.johnturner.com/howto John -Original Message- From: Mark Vovsi [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 11:47 PM To: [EMAIL PROTECTED] Subject:

Re: Problems with HttpServeletRequest.getParameter()

2002-09-20 Thread Tim Funk
I think it may be something else, see you trace: -- java.lang.NoClassDefFoundError: org/apache/jasper/runtime/JspException Look for the file: GalleryViewPage$jsp.java line 105. It is your java file created by your JSP. The java file will be buried somewhere in the $TOMCAT_HOME/work directory.

RE: Native parts of connectors ?

2002-09-20 Thread Turner, John
Perhaps. I apologize, it's my preference to avoid nightly code, so I only looked in release. In my experience, nightly is generally unstable and not much help. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 8:04 AM To:

RE: Which Tomcat version for production environment ?

2002-09-20 Thread Turner, John
4.0.4 In addition, upgrade your Apache to 1.3.26. There are numerous fixes and some security fixes between .19 and .26. Don't move to 4.1.x until you have tested it thoroughly, there have already been a few gotchas with 4.1.10. John -Original Message- From: Simon M Pascoe

Apache Tomcat and IP address

2002-09-20 Thread Henrik
I just got an IP address. I've been running the Apache Tomcat on an internal network for about two months with no problems, and I would like to set it up to use the IP address, effectively letting people connect to my server through the Internet. How do I set up the Apache Tomcat (4.0.4) to

RE: two instances of tomcat (in diferent ports) on the same machi ne

2002-09-20 Thread Turner, John
Separate everything...separate startup scripts, separate classpaths, separate work directories, separate server.xml. So I have things like tomcat-host1 and tomcat-host2 startup scripts, and server-host1.xml and server-host2.xml, and work-host1 and work-host2 directories, etc. Only one

RE: Dumb Question ../servlet/com.justatest.test.MyServlet error

2002-09-20 Thread john-paul delaney
Then what is the URL I should be using to invoke the InitSnoop servlet if the file system location is: tomcat-rootwebapps/jat/WEB-INF/classes/com/justatest/test/InitSnoop? thanks /j-p. On Fri, 20 Sep 2002, Miguel Angel Mulero Martinez wrote: Maybe the InitSnoop.java don't start with

RE: Apache Tomcat and IP address

2002-09-20 Thread Turner, John
Tip: don't post live IP addresses to a public mailing list, especially if you are asking setup questions, as that indicates to others that the box may be be exploitable. That IP address is unreachable, so my guess is the first thing you will need to do is configure a firewall to allow access to

mindboggling problem with apache 2.0.40 and tomcat 4.1.10

2002-09-20 Thread Brett . REASOR
I have apache/tomcat 3.3.1 running on a windows 2000 server. Everything works fine. I need to upgrade to 4.x, so I installed Apache/Tomcat4.1.10 on a windows 2000 pro workstation to test everything before updating the live server. All my apps work fine, so I Tomcat 4.1.10 on the server. Every

RE: Transfer encoding chunked

2002-09-20 Thread c . viehl
Hi, You need to set the content-length of the response before it is committed (or have the response fit in the 4K buffer). you're of course right about the transfer encoding. Unfortunately that hasn't solved my original problem. I have found the solution now. I don't want to bore people

Re: web.xml

2002-09-20 Thread Lindomar
Ok Vincent. Thanks. But, i remove this problem...in fact, the problem is my web.xml file, the mapping that i put, don't work. If i write http://localhost:8080/teste/servlet/HelloWorldExample, works. But, http://localhost:8080/teste/hi don't work. And i search something in log, but i can't found

Re: mindboggling problem with apache 2.0.40 and tomcat 4.1.10

2002-09-20 Thread Remy Maucherat
[EMAIL PROTECTED] wrote: I have apache/tomcat 3.3.1 running on a windows 2000 server. Everything works fine. I need to upgrade to 4.x, so I installed Apache/Tomcat4.1.10 on a windows 2000 pro workstation to test everything before updating the live server. All my apps work fine, so I

Re: Re[2]: Context path

2002-09-20 Thread rsequeira
Jake, you are correct. Guess I was high on dope, huh :-) But I suppose one could still use the environment entry technique for root contexts. Thanks RS Jacob

Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Sasha Kraljevic
Has anyone made it work with the Apache 2.0.40 / Win32 (win2K), Tomcat 4.1.10 and mod_webapp.so for the WARP protocol ? The error reported by Apache is: Cannot load path to the/mod_webapp.so into server: The specified module could not be found. I have used libapr.dll from Apache 2.0.40 and

Re: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Brett . REASOR
That's because it is unsupported for Win32 and at this moment isnt meant to be ran on Win32 machines. If you can get it to work, let me know. I'd like to try it. Brett Reasor Systems Administrator 212-399-4200 x 2297 [EMAIL PROTECTED]

RE: Realtime Log File Viewer

2002-09-20 Thread Dennis Doubleday
tail is also included in the cygwin distribution. Install that and it make your Win2k box much more useful. :-) http://cygwin.com/ -Original Message- From: Nicholas Orr [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 5:05 AM To: 'Tomcat Users List' Subject: RE:

Entry point to application

2002-09-20 Thread adi
Hello, When tomcat is starting-up I want to initialize my application. In order to do this I need access to some of the parameters like the context docbase etc. Is there any method in tomcat API that I can use in order to get a reference to the defoult servlet or other already loaded class from

Re: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Thomas T. Veldhouse
You can not use a .so file on Windows -- unless something has changed in a wierd way with Apache and Windows. .so is a UNIX shared library, where .dll is a Windows shared library. You need to find a mod_webapp.dll file, of which you will not find one. It is not [yet] supported for Windows.

RE: JSP Help

2002-09-20 Thread Sexton, George
No, you don't want another print writer, you want to flush the implicitly created printwriter named out that jsp creates under the hood. If this doesn't help, I'm afraid I can't suggest anything more. I avoid JSP like the plague. George Sexton MH Software, Inc. Home of Connect Daily Web

RE: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Vincent . Gaboriau
Hi, You can have .so on Apache 2.0.x under Windows. When you compile Apache by your self all the files are .so. You can try to rename them on .dll, but it doesn't change anything for Apache. Vincent. -Message d'origine- De : Thomas T. Veldhouse [mailto:[EMAIL PROTECTED]] Envoyé :

Re: URL patterns + directory listings

2002-09-20 Thread Milt Epstein
On Fri, 20 Sep 2002, adi wrote: Hello, I encountered a very strange problem with servlet mappings. I have the following entry in my web.xml file : servlet servlet-nameMyDefaultServlet/servlet-name servlet-classorg.apache.catalina.servlets.DefaultServlet/servlet-class

Re: mindboggling problem with apache 2.0.40 and tomcat 4.1.10

2002-09-20 Thread Brett . REASOR
Here are my logs: [Catalina Log] 2002-09-20 09:46:42 Ajp13Connector[28019] accepted socket, assigning to processor. 2002-09-20 09:46:42 Ajp13Connector[28019] about to create a processor, available=4, created=5, maxProcessors=75 2002-09-20 09:46:42 Ajp13Processor[28019][3] An incoming request

RE: Virtual Hosting and Contexts

2002-09-20 Thread Brian Topping
Hi Anthony! Cool, I'll try those suggestions, thanks! I've actually started spending more time on the JBoss container facilities that wrap Tomcat, since that's probably what I am going to be deploying on. There is some interesting code that has been developed there that allows Tomcat to be

servletcontext/path problem

2002-09-20 Thread Dave Robbins
Hi Folks, I've posted this before and still haven't figured it out. Maybe you can help this time I'm using Forte 4.0 and trying to mess with Model 2 jsp/servlet architecture I've got a file index.jsp in my top level directory index.jsp contains a link to a servlet myServlet the myServlet

Re: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Thomas T. Veldhouse
Yes, but this guy downloaded the binary mod_webapp.so from the web somewhere. Presumably, that is for Linux or some other UNIX variant. Tom Veldhouse - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, September 20, 2002 8:57 AM Subject:

RE: URL patterns + directory listings

2002-09-20 Thread adi
Thanks, I will try to explain what I am trying to do. My project directory structure is something like this: MyContext/admin MyContext/admin/config MyContext/userdata MyContext/userdata/user1 MyContext/userdata/user2 ... I want to enable listing on admin and its subs and disable listing on

Help with swallowOutput

2002-09-20 Thread Nome real
Hi, I'm trying to use the tag swallowOutput in order to redirect a user's System.out to a log file. This is the snap of the server.xml: Host name=client.com Context path=/ docBase=/home/client debug=0 crossContext=false reloadable=true swallowOutput=true

Re: web.xml and manager application

2002-09-20 Thread William Wragg
Hi, I had this on 4.0.4. The way I got around it was: (1) Undeploy the wepapp - http://localhost:8080/manager/remove?path=/myApp (2) Delpoy the webapp - http://localhost:8080/manager/install?path=/myAppwar=file:/path/to/myApp This seemed to reparse the web.xml file OK. Reagards, Wm. At

Re: nullpointerexception jdbcstore

2002-09-20 Thread Glenn Nielsen
A patch to fix the JDBCStore null pointer bug has been committed to CVS. It was too late to make it into the Tomcat 4.1.11 release done this morning. But will be available in the next nightly build or you can wait for the Tomcat 4.1.12 release. Regards, Glenn Ronald Klop wrote: -BEGIN PGP

RE: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Vincent . Gaboriau
That's right it can be the case. For my expercience, I always compile Apache and the modules on my platform. I'll get lots of curious behaviours using downloaded Apache 2.0 binary and Apache's modules. If you can create your self-compiled one, do it. I never managed to compile mod_webapp. I have

RE: web.xml and manager application

2002-09-20 Thread Cox, Charlie
just use stop and start. That will read the web.xml Charlie -Original Message- From: William Wragg [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 10:15 AM To: Tomcat Users List Subject: Re: web.xml and manager application Hi, I had this on 4.0.4. The way I got

Re: Listener directive in Host conrtainer ???

2002-09-20 Thread achana
Started up TOMCAT with startup.sh. It works! I could execute the little JSP's and Servlets in http://MyServer:8080/examples; *** Started up Apache2 with /usr/local/bin/httpd -k start. After chainging DocumentRoot in httpd.conf, throws up my own index.html on http://192.123.123.1/index.html;

Re: Apache2/Win32 and mod_webapp anyone?

2002-09-20 Thread Sasha Kraljevic
[EMAIL PROTECTED] wrote: That's right it can be the case. For my expercience, I always compile Apache and the modules on my platform. I'll get lots of curious behaviours using downloaded Apache 2.0 binary and Apache's modules. If you can create your self-compiled one, do it. I never

Re: Listener directive in Host conrtainer ???

2002-09-20 Thread achana
[EMAIL PROTECTED] wrote: Further to this saga : Went thru the whole process of geenrating the mod_jk.so again , bounced box and using IE http://129.123.123.1/examples; I now get this exception This page cannot be found... Started up TOMCAT with startup.sh. It

SOLVED Listener directive in Host conrtainer ???

2002-09-20 Thread achana
[EMAIL PROTECTED] wrote: Please drop this thread : I figured it out - some silly little things, as usual... THX once again [EMAIL PROTECTED] wrote: Further to this saga : Went thru the whole process of geenrating the mod_jk.so again , bounced box and using IE

AW: Which Tomcat version for production environment ?

2002-09-20 Thread Ralph Einfeldt
Have a look a the release notes for 4.1.11: http://jakarta.apache.org/builds/jakarta-tomcat-4.0/test/v4.1.11/RELEASE-NOTES -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. September 2002 03:09 An: Tomcat Users List Betreff: Re:

Re: Problem compiling JSP in Tomcat

2002-09-20 Thread Giancarlo Gallardo
Thanks John! I found my problem... It was an space before closing a tag when using a JSP Taglib! mytaglib:tag1 . (something) /mytaglib:tag1 --- Here was the error! The blank before closing the tag! JDeveloper runtime compiler works fine, but Tomcat doesn't!. Anyway...

multiple mappings to the same context

2002-09-20 Thread Durham David Cntr 805CSS/SCBE
I'm using Tomcat 4.0.4 and need to have multiple mappings (i.e. /MyAPP and /myapp) to the same context. Does anyone know how to do this? THanks, Dave -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: URL patterns + directory listings

2002-09-20 Thread Milt Epstein
On Fri, 20 Sep 2002, adi wrote: Thanks, I will try to explain what I am trying to do. My project directory structure is something like this: MyContext/admin MyContext/admin/config MyContext/userdata MyContext/userdata/user1 MyContext/userdata/user2 ... I want to enable listing on

RE: mod_jk log file errors

2002-09-20 Thread Anthony Milbourne
Hi We had similar looking errors to you (including some broken pipe messages in catalina_log) and did a lot of searching for solutions. There are a lot of people posting about this sort of thing and no definitive answers that we could find. but... We found a suggested solution which I will

RE: mod_jk log file errors

2002-09-20 Thread Ago Meister
Hi, Yes, I increased Tomcat maxProcessors value and it seems to me that it works. kind regards, Ago Meister -Original Message- From: Anthony Milbourne [mailto:[EMAIL PROTECTED]] Sent: 20. september 2002. a. 18:34 To: 'Tomcat Users List' Subject: RE: mod_jk log file errors Hi We had

RE: Dumb Question com.justatest.test.MyServlet error

2002-09-20 Thread John-Paul Delaney
Hello... Sorry about pushing so - but I'm stuck with this one What URL do I use to launch the servlet MyServlet deployed (not a .war) as: tomcat-root/webapps/jat/classes/com/justatest/test/MyServlet.class? (tomcat-root/webapps/jat/classes/MyServlet.class launches successfully with this

Enviroment variables

2002-09-20 Thread Marc
Hi! I'm using RedHat, with jdk1.4.1, apache 1.3.26 and tomcat 4.1.10. I'm having problems installing tomcat 4.1.10, I cannot connect it with apache. I have some questions: First, wich environment variable must be declared? (I declare JAVA_HOME, CATALINA_HOME, PATH=$PATH:$JAVA_HOME/bin). Second,

unusual problem after installing mod_jk.so ???

2002-09-20 Thread achana
Hi All. I believe I might have installed mod_jk.so Tomcat works fine : http://MyServer:8080/examples;. All executables in jsp/ and servlets/ work fine. From IE I entered http://MyServer/examples; ... (1) list for images/ ; jsp/ and servlets/ comes up ; (2) all 3 images shown when clicked - fine

RE: Enviroment variables

2002-09-20 Thread Turner, John
Only JAVA_HOME and CATALINA_HOME need to be declared. Many people are using JK, others are using JK2 (default in 4.1.10), others are using WARP (webapp). The choice is up to you, it depends on what you want to do. I have posted some RedHat HOWTOs, they may be of some help:

Tomcat 4.1.10 don't compile jsp under w2k

2002-09-20 Thread Patricio Vera S.
Hello, I'm trying to setup tomcat 4.1.x on my w2k, but I have problem when call to jsp page, it seems like the path separator is not valid because in the log I have the next entry : 2002-09-20 11:47:27 Error compiling file: C:\Tomcat4.1\work\Standalone\localhost\_\/index_jsp.java

RE: unusual problem after installing mod_jk.so ???

2002-09-20 Thread Turner, John
If exmaples are in /path/to/tomcat/examples and your Apache root is /some/other/path/to/htdocs then yes, it sounds like you have mod_jk.so installed. From what you have said, it sounds like your JkMount directives are not correct. John -Original Message- From: [EMAIL PROTECTED]

Directory Listing

2002-09-20 Thread Ravindra K. Bhat
Hi, How do I avoid listing the directory files when users type the url in tomcat 3.2.4? Thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

JK 1.2.0 documentation

2002-09-20 Thread Henri Gomez
There is an up to date documentation available for JK at : http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.0/doc/ Thanks to take a look and make a revue since it will be bundled in the near jk 1.2.0 release . Regards -- To unsubscribe, e-mail: mailto:[EMAIL

RE: Dumb Question com.justatest.test.MyServlet error

2002-09-20 Thread Andreas Mohrig
I just experimented with this a bit. It seems tomcat provides standard mappings for the servlets you deploy under the document base of your webapp. A servlet residing in tomcat-root/webapps/jat/classes/com/justatest/test/MyServlet.class should be reachable under

Postgresql DataSource Tomcat 4.1 SQLException

2002-09-20 Thread Paul Salazar
Hi, I am trying to setup a postgresql datasource on tomcat 4.1 with much frustration. I have read all the threads out there concerning this matter and I can't see to find anyone who has a working example. What I have is this: Redhat 7.2 server running: Postgresql 7.2 Tomcat 4.1 I have a

RE: unusual problem after installing mod_jk.so ???

2002-09-20 Thread Venkat Reddy Valluri
I too got the same problem, here I what I understood is , when you try to execute /examples/jsp/images/ you could see iamges, but you can't execute jsp's this means apache itself is executing /examples/jsp/images/ but not tomcat, because images can be viewed by apacahe but where as jsp's

Re: web.xml and manager application

2002-09-20 Thread info
Hi Charlie, thanks for qour answere! I tested it an with my Tomcat (4.0.1 if it depends on?) the web.xml ist not beeing parsed again. Rainer just use stop and start. That will read the web.xml Charlie -Original Message- From: William Wragg [mailto:[EMAIL PROTECTED]] Sent:

RE: JK 1.2.0 documentation

2002-09-20 Thread Turner, John
Looks good...one thing I would suggest is to delete the links to the binaries, as they don't exist. Or post them, or note that they will be a) posted soon (with a date) or b) never posted. John -Original Message- From: Henri Gomez [mailto:[EMAIL PROTECTED]] Sent: Friday, September

  1   2   >