Re: Exceptions when starting tomcat 3.2.4

2002-09-12 Thread salim
ur servlet.jar and webserver.jar should be in classpath or lib directory of tomcat -- Salim - Original Message - From: Bill Barker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 11:51 AM Subject: Re: Exceptions when starting tomcat 3.2.4 rob [EMAIL

HttpServletResponse question...

2002-09-12 Thread Jacob Kjome
I am trying out an XSLT filter in one of the JDCTechTips: http://developer.java.sun.com/developer/JDCTechTips/2001/tt0626.html The setContentType() is overridden in the response wrapper. The way they have it set up, though, seems to assume that this method will get called automatically

Re: Exceptions when starting tomcat 3.2.4

2002-09-12 Thread rob
salim wrote: ur servlet.jar and webserver.jar should be in classpath or lib directory of tomcat It is Using classpath: /usr/pkg/tomcat/lib/jasper.jar:/usr/pkg/tomcat/lib/test:/usr/pkg/tomcat/lib/ webserver.jar:/usr/pkg/java/lib/tools.jar:/usr/pkg/lib/java/servlet.jar:/usr

Re: Exceptions when starting tomcat 3.2.4

2002-09-12 Thread rob
Bill Barker wrote: rob [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I've recently started using tomcat 3.2.4 and am receiving ClassNotFoundException(s) when starting the servlet container. I suspect it's due to a bad classpath but I'm not really certain

Re: Possible Memory Leak in Apache Tomcat/4.1.10-LE-jdk14

2002-09-12 Thread micael
Good information, Glenn. Thanks. At 09:45 PM 9/11/2002 -0500, you wrote: The JVM will grow to as much memory as you configure for its max, you can set this with the java arg -Xmx. Then the JVM manages its heap internally. Add this arg to java when you start Tomcat -verbose:gc, this will

How to Change Port Number of Tomcat

2002-09-12 Thread Bing Li
Hi, all, I am now using Tomcat 3.2.3. I would like to use one PC to simulate two Web applications. Each of them resides in the same PC but they should have different port number. I took a try to change the port value in the server.xml. But it doesn't work. Anyone could do me a favor? Thanks a

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Andreas Mohrig
I'd say that changing the port number in server.xml should definitely do the trick. Could you post your changed server.xml? We could take a look. greetings Andreas Mohrig Web: www.cadooz.de -Original Message- From: Bing Li [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002

test

2002-09-12 Thread Hoy, Samantha SSA-CORAR11
Hello this is a test since none of my postings seem to be going thru to the userlist... guess I am testing the firewall ! ;-) Samantha ## Attention: This e-mail message is privileged and confidential. If you are not the

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Bing Li
Hi, Mohrig, In the Connector part, there are three port values, 8080, 8443 and 8007. I change them to 9080, 9443 and 9007. But when the other Tomcat (port values are 8080, 8443, 8007) is started, the one with new port values got error, which said Address already in use. The changed server.xml

Bug in 4.1.10?

2002-09-12 Thread Miguel Angel Mulero Martinez
I just have joining to he list, and I have searched in the old messages but I haven't found this: I have installed the new Tomcat 4.1.10, under Win2000. My problem is that if I execute it like a windows service, Tomcat give me errors compiling any JSP because it don't find the classes under

Re: Bug in 4.1.10?

2002-09-12 Thread Ben Walding
You haven't done something odd with file permissions / quotas have you? I can't recall offhand what user the service runs as, but you could try setting it to run as the same user as you are logged in as. We are using TomCat 4.1.10 on Win2K SP3 with JDK 1.4.0_01, and JSPs do compile (well the

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Andreas Mohrig
Hi, I'm afraid I can't reproduce your symptom with my two Tomcat 4.0(.4) on a single Linux PC. But since I don't have Tomcat 3.2.3 at my disposal, this may mean nothing. This may sound silly, but have you double checked that the right instances of tomcat get started (using the right

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Anthony Milbourne
Hi I had a problem which looked a bit like that... It was caused by the fact that the default workers.properties file that comes with mod_jk 4.0.4 doesn't seem to work with tomcat 4.0.4. Check the workers.properties file to see if it mentions ajp14. If it does then that is probably your

AW: PROBLEM with Tomcat 4.10 and Jasper

2002-09-12 Thread Ralph Einfeldt
It looks like jasper is generating wrong code in this case. encode() is called on the result of FIECONJV1.getCONTCO(vect), which is a long. This should be converted to a string before calling encode(). As a work around you can force the expression to return a string like this: jsp:include

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Garling, Matthew
What ever you do, don't start putting tomcat 4 configuration entries in your server.xml configuration file. The error you say you are getting isn't a Tomcat problem at all. It sounds as though Tomcat is trying to start on the new ports you defined BUT they are already in use. That happens when

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Vincent . Gaboriau
I think that Andreas has right. The ports of the connectors must be changed, but the shutdown port must also be changed. Try this and we'll see. -Message d'origine- De : Garling, Matthew [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 12 septembre 2002 11:09 À : 'Tomcat Users List' Objet : RE:

RE: Bug in 4.1.10?

2002-09-12 Thread Miguel Angel Mulero Martinez
The user is LocalSystem (the same that other services and the same I used in the old version of Tomcat), and the problem isn't in the compilation of a JSP, the problem is in the compilation of the JSP when it uses (import) classes under WEB-INF/classes or WEB-INF/lib. I tried the tomcat examples

Listener with Tomcat4.0.4

2002-09-12 Thread Heligon Sandra
Hi, I placed Listeners in my web.xml file !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//ENhttp://java.sun.com/j2ee/dtds/web-app_2_2.dtd; web-app !-- Application start/shut down listener -- listener

RE: Listener with Tomcat4.0.4

2002-09-12 Thread Vikramjit Singh
AFAIK listeners are in 2.3. in your web.xml change 2.2 to 2.3. hope you have downloaded servlet 2.3. http://java.sun.com/products/servlet/2.3/javadoc Regards, Vikramjit Singh, GTL Ltd. Ph. 7612929-1059 -Original Message- From: Heligon Sandra [mailto:[EMAIL PROTECTED]] Sent:

Re: Bug in 4.1.10?

2002-09-12 Thread Glenn Nielsen
Create the directory temp in your CATALINA_HOME if it doesn't exist. Miguel Angel Mulero Martinez wrote: I just have joining to he list, and I have searched in the old messages but I haven't found this: I have installed the new Tomcat 4.1.10, under Win2000. My problem is that if I execute

RE: Bug in 4.1.10?

2002-09-12 Thread Miguel Angel Mulero Martinez
The directory temp exists in CATALINA_HOME. -Mensaje original- De: Glenn Nielsen [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 12 de septiembre de 2002 13:04 Para: Tomcat Users List Asunto: Re: Bug in 4.1.10? Create the directory temp in your CATALINA_HOME if it doesn't exist. Miguel

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Drinkwater, GJ (Glen)
From the tomcat 4 RUNNING.txt file, to change the port number it only says to change 8080 to the number that you want. It does not mention changing anything else in the file. I have changed all my tomcats to 80 on windows, linux and solaris and have had not problems. Check netstat, also check

Can anyone Undeploy an Existing Application in 4.1.10?

2002-09-12 Thread Ben Rometsch
Hi, I am getting this error in both Windows XP and Gentoo Linux: http://localhost:8080/manager/undeploy?path=/outreach Always results in: FAIL - Cannot remove document base for path /outreach With, curiously, the following being logged: 2002-09-12 12:37:13 Manager:

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Vincent . Gaboriau
That's right, but he wants to run 2 Tomcat simultaneously. That's why all ports number must be different. -Message d'origine- De : Drinkwater, GJ (Glen) [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 12 septembre 2002 13:35 À : 'Tomcat Users List' Objet : RE: How to Change Port Number of

RE: Can anyone Undeploy an Existing Application in 4.1.10?

2002-09-12 Thread Miguel Angel Mulero Martinez
Have you try the html version: http://localhost:8080/manager/html ? I hope this will work -Mensaje original- De: Ben Rometsch [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 12 de septiembre de 2002 13:39 Para: [EMAIL PROTECTED] Asunto: Can anyone Undeploy an Existing Application in

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Drinkwater, GJ (Glen)
I have got 2 running simultaneously. to have 2 running, on one of the tomcats you need to change 6 things. There are 4 connectors.http, https, ajp and test http. change https port. change http port and then change redirect port to whatever https port is. change ajp port and then do the same

RE: apache 1.3 and mod_jk2

2002-09-12 Thread Turner, John
I'm not aware of anyone doing so. I haven't been able to do this, after several hours of trying. I am still trying to determine if its even possible...I'm starting to think that mod_jk2 (at least, the latest version of it) is for Apache 2 only, but I don't know that for sure. John

Re: Listener with Tomcat4.0.4

2002-09-12 Thread Siddharth
replace web-app_2_2.dtd With web-app_2_3.dtd in your web.xml Siddharth - Original Message - From: Heligon Sandra [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 11, 2002 10:10 PM Subject: Listener with Tomcat4.0.4 Hi, I placed Listeners in my web.xml file

Problem with Tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
Hi! I have installed Tomcat 4.1.10-LE-JDK1.4. When I type in the browser http://localhost:8080/ I get the Error-Message HTTP Status 500 Exception report description The server encountered an internal error () that prevented it from fulfilling this request.

RE: apache error?

2002-09-12 Thread Turner, John
Do you have the right mod_jk.so The mod_jk.so for Apache 1.3 is not the same mod_jk.so for Apache 2.0. John -Original Message- From: hari hari [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 8:47 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE:

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Turner, John
You only need to change all of these ports if all of those connectors are enabled. If you only have the AJP connector enabled, you only have to change that port, etc. John -Original Message- From: Drinkwater, GJ (Glen) [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002

Re: apach1.3/mod_jk2/tomcat4.1

2002-09-12 Thread Thomas T. Veldhouse
Yes, that document is rather rough. There is this page, http://www.pubbitch.org/jboss/mod_jk2.html. That does a pretty decent job. The ANT build of JTC is torturous though. It fails if your Apache layout is at all different from standard -- even when you supply the appropriate hints.

nested struts logic iterate tagdoes not work with 4.1.10

2002-09-12 Thread tng
we are trying to migrate from 4.0.4 to 4.1.10 and are quite impressed by the better performance. however, struts 1.02 nested iterate tag does not seem to work. any help?

Re: HTTP Status 503 - Server default is currently unavailable

2002-09-12 Thread Chuck Amadi
Mark Hansen wrote: I'm trying to deploy Apache Tomcat/4.0.3. It starts up, but when I try to access index.html, I get the error message HTTP Status 503 - Server default is currently unavailable. Can anyone tell me what might be causing this? Thanks, Mark -- To unsubscribe, e-mail:

RE: Problem with Tomcat 4.1.10!

2002-09-12 Thread Miguel Angel Mulero Martinez
I've reported the same problem with the versión not LE. The problem is using tomcat in win2000 as a service. Are you in the same case? If yes, try to start it from the command line, with catalina_start. God luck! -Mensaje original- De: Alexander Schmidt [mailto:[EMAIL PROTECTED]]

Apache authentication info failed to pass to Tomcat 4.0.3

2002-09-12 Thread Xiaoyu Zhang
Hi all, I configured Apache to use basic authentication and tried to pass the successful authentication info to Tomcat through AJP13 connector. This approach works great in Apache 1.3.26 with Tomcat 4.0.3, failes with Tomcat 4.0.4, 4.1.10. Tomcat 4.1.10's AJP13 connector and Coyote connector

RE: Problem with Tomcat 4.1.10!

2002-09-12 Thread Andreas Mohrig
Something with the syntax of your jsp file. The line An error occurred at line: -1 in the jsp file: null makes me guess at some illegal character or even a missing file (???). Do you have some kind of index.jsp in your root directory? Do you have a webapp configured for /? Try accessing

Re: apache 1.3 and mod_jk2

2002-09-12 Thread Catalin
i mannged to install mod_jk2 on a apache1.3 but not with unix socket connection. so the jk2.propertis has no JNI .so for the sockets. so i make the connection with TCP sockets and it works fine i followed the steps from http://www.pubbitch.org/jboss/mod_jk2.html but instead of configuring for

Re: mod_jk2 virtual host

2002-09-12 Thread Catalin
does this thing works on apache1.3 as well ? and we're talking about mod_jk2 here right ? Catalin - Original Message - From: Galbayar To: Tomcat Users List Sent: Thursday, September 12, 2002 3:13 AM Subject: RE: mod_jk2 virtual host Add to the httpd.conf VirtualHost *

RE: PageContext is always null with taglibs

2002-09-12 Thread Adziashvili, Itzik
Do you use the class with a tag in a jsp? or by calling it from another class? -Original Message- From: Byrne Reese [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 6:04 AM To: [EMAIL PROTECTED] Subject: PageContext is always null with taglibs I am trying to write a custom

Re: Problem with Tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
Hi! I have problems with the JSPs. The example also doesn´t work! Is it a bug! With Tomcat 4.0.4 I hadn´t problems. - Original Message - From: Andreas Mohrig [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 2:20 PM Subject: RE: Problem with

Re: mod_proxy VS mod_jk2

2002-09-12 Thread Catalin
could you post the link ! i did not find it on sf.net ! 10x Catalin - Original Message - From: James Ward To: Tomcat Users List Sent: Wednesday, September 11, 2002 11:59 PM Subject: RE: mod_proxy VS mod_jk2 I have read some emails on the Jboss list stating that in Apache2, mod_proxy

RE: Problem with Tomcat 4.1.10!

2002-09-12 Thread Andreas Mohrig
Maybe I was wrong and it's not a problem with your jsp file, since Miguel Angel Mulero Martinez had the same problem (running tomcat in win2000 as a service). On which platform do you have your tomcat installed? Andreas Mohrig -Original Message- From: Alexander Schmidt [mailto:[EMAIL

java.io.IOException: Cannot recover key when trying to start an SSL in tomcat

2002-09-12 Thread Nikolay Kabadzhov
hi, Any idea? thank's in advance. So the situation: 1. I have the following keystore file c:\keytool -list Keystore type: jks Keystore provider: SUN Your keystore contains 3 entries: curie, Thu Sep 12 14:46:30 EEST 2002, trustedCertEntry, Certificate fingerprint (MD5):

Re: Problem with Tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
I installed on platform win2000. But my great problem is that I have connected TOMCAT with Apache. I need Apache and Apache starts Tomcat! Any idea? Thanks A. Schmidt - Original Message - From: Andreas Mohrig [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent:

RE: Problem with Tomcat 4.1.10!

2002-09-12 Thread Vincent . Gaboriau
You can run Tomcat as a service with the same parameters as the DOS mode. There were a post in this mailling list yesterdey (I think). The service creation command was given. I don't know which parameter is needed in your case, but if you specify all the parameters, it must be worked as in Dos

Re: Problem with Tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
Thanks but I don´t have the parameters from yesterday! Did anyone have? Thanks A. Schmidt - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 3:17 PM Subject: RE: Problem with Tomcat 4.1.10! You can run Tomcat as a

Re: Apache authentication info failed to pass to Tomcat 4.0.3

2002-09-12 Thread Jacob Kjome
The Coyote connector is broken in this respect. Remmy recently fixed it in CVS post Tomcat-4.1.10. Grab a nightly build and use the coyote jar files from there. Jake At 08:14 AM 9/12/2002 -0400, you wrote: Hi all, I configured Apache to use basic authentication and tried to pass the

RE: Problem with Tomcat 4.1.10!

2002-09-12 Thread Vincent . Gaboriau
That's what was given yesterday : %CATALINA_HOME%\bin\tomcat.exe -install Apache-Catalina %JAVA_HOME%\jre\bin\server\jvm.dll -Djava.class.path=%CATALINA_HOME%\bin\bootstrap.jar;%JAVA_HOME%\lib\tools.ja r -Dcatalina.home=%CATALINA_HOME% %CATALINA_OPTS% -Xrs -start

Re: Problem with Tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
Hello! If I start the Tomcat from DOS-Mode I get the IOException : APR not loaded, disabling jni_documents: no jkjni in java.library.path Can that be the problem? Thanks A. Schmidt - Original Message - From: Alexander Schmidt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

Http Session

2002-09-12 Thread Stephane . RAULT
Hi All ! I'm not sure I've understand everything about Session !! I'm using Tomcat 4.0 and I use a Filter to check authentification. This filter filters everything except the connection page. what I'm doing in doFilter : ---CODE- HttpSession

RE: PageContext is always null with taglibs

2002-09-12 Thread Byrne Reese
I am calling it from wtithin a JSP: pCity Name: jsp:getProperty name=city property=name//p On Thu, 2002-09-12 at 08:32, Adziashvili, Itzik wrote: Do you use the class with a tag in a jsp? or by calling it from another class? -Original Message- From: Byrne Reese [mailto:[EMAIL

tomcat 4.1.10 mishandling nested variables in tags?

2002-09-12 Thread Dave Townsend
Just upgraded to 4.1.10 and found that my webapp no longer functions. I have tracked this down to a tag that uses nested tags. On the old version (4.0.4), immediately after the doStartTag call, the variables are declared for the jsp page, and their values read from the pageContext, then the jsp

i still got problems

2002-09-12 Thread Felipe Schnack
Why this doesn't work? I added to web.xml: listener listener-classcom.w2.login.servlets.Global/listener-class /listener -- Felipe Schnack Analista de Sistemas [EMAIL PROTECTED] Cel.: (51)91287530 Linux Counter #281893 Faculdade Ritter dos Reis www.ritterdosreis.br [EMAIL PROTECTED]

IOException under tomcat 4.1.10!

2002-09-12 Thread Alexander Schmidt
Hi! Can someone tell me what this mean and if it is important? INFO: APR not loaded, disabling jni components: java.io.IOException: no jkjni in java.library.path Thanks A. Schmidt

AW: tomcat 4.1.10 mishandling nested variables in tags?

2002-09-12 Thread Ralph Einfeldt
That's not the only problem. Expressions (%= %) are not converted to Strings before giving them to methods like encode() or include(). By now I have two examples: 1.) jsp:include .. ... jsp:param name=value value=%= 1 % / ... /jsp:include 2.) jsp:include page=%= new

Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Short, Dave
I'm having a problem accessing .jsp files when running Tomcat (inprocess - mod_jk2) via an Apache virtual host. I have three virtual hosts defined in the httpd.conf file (see below) with three webapps defined in server.xml (see below). Apache serves up my index.html just fine from vhost App1.

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Turner, John
What are your server.xml Host element definitions? Do you have one for each of the Apache virtual hosts? John -Original Message- From: Short, Dave [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:31 AM To: Tomcat Users List Subject: Apache 2.0.40/Tomcat 4.1.10

JNDi Lookup (JMS Topic Entity bean)

2002-09-12 Thread Sean
Hi, I've dredged through the archives and looked up all the documentation I could find before sending the mail. I am running on Win 2k, Tomcat 4.0.2, JDk 1.4 and J2EE RI 1.3.1. I have a SOAP servlet in a standalone Tomcat. It posts to a JMS topic and creates/access entity EJBs, both of which

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Short, Dave
The missing link! I don't have Host definitions setup or see an example of the Host definition in the server.xml file. Would you mind pointing me in the direction where I can find documentation on this? Thanks!!! -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent:

registering variables

2002-09-12 Thread Felipe Schnack
How can I create an variable within an taglib? I would like to be able to create an variable accesible to my jsp page. -- Felipe Schnack Analista de Sistemas [EMAIL PROTECTED] Cel.: (51)91287530 Linux Counter #281893 Faculdade Ritter dos Reis www.ritterdosreis.br [EMAIL PROTECTED]

RE: IOException under tomcat 4.1.10!

2002-09-12 Thread Vincent . Gaboriau
I don't know very well the JK2 connector, but I think that you have configured Tomcat to function with the jni channel. And you don't specify the apr.NativeSo parameter. More explication here. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/configtc.html -Message d'origine- De

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Turner, John
There should be a Host element in server.xml for localhost. It looks like this: Host name=xxx.yyy.com debug=0 appBase=webapps unpackWARs=true autoDeploy=true That's from a 4.1.10 server.xml. I'm still getting familiar with 4.1.10, I think you might need to tweak the Engine element as

RE: registering variables

2002-09-12 Thread Andreas Mohrig
You could put it in the pageContext (or even in the session or application context). That will require some syntactic clutter (first pageContext.setAttribute(variableName,objectVariable); then (in the jsp page) ObjectType myVariable =

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Habibak haAlbek
Still hangs. Apache alone works fine. TomCat alone works fine. something is wrong with the connector configuration. here's what I have: 1- Server.xml : - Server port=8005 shutdown=SHUTDOWN debug=0 Listener className=org.apache.ajp.tomcat4.config.ApacheConfig / - Service

Apache 1.3.26 to Tomcat 4.0.4 PROBLEM with mod-Jk on solaris

2002-09-12 Thread Habibak haAlbek
Still hangs. Apache alone works fine. TomCat alone works fine. something is wrong with the connector configuration. here's what I have: 1- Server.xml : - Server port=8005 shutdown=SHUTDOWN debug=0 Listener className=org.apache.ajp.tomcat4.config.ApacheConfig / - Service

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Turner, John
What do the log files say? John -Original Message- From: Habibak haAlbek [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:56 AM To: Tomcat Users List Subject: RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues Still hangs. Apache alone works fine. TomCat

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Habibak haAlbek
This is a log file nod_jk.log snippet. Its been logging this over and over and over, no matter what changes I made :) [Thu Sep 12 10:31:21 2002] [jk_uri_worker_map.c (460)]: Into jk_uri_worker_map_t::map_uri_to_worker [Thu Sep 12 10:31:21 2002] [jk_uri_worker_map.c (477)]: Attempting to

Réf. : Http Session

2002-09-12 Thread Stephane . RAULT
-- Ok, not so much answer huh !! Is my question stupid ? By the way, i'm adding one question to the rest. does Tomcat stores session attributes on file system. If yes, is it possible to disable this function or at least to prevent him to read them back after a reboot ? Thanks in advance for

Apache 2, mod_jk2, inprocess, w2k, classpath ?

2002-09-12 Thread Andre Schild
Hello, I'm trying to setup my Apache 2.0.40 with mod_jk2 and tomcat 4.1.10 When using the AJP13 connector or http connectors then things work fine. But when I specify to use the inprocess/jni connection, then I get startup problems for the VM. Looking at the stderr.log file, I see that it

RE: Apache 1.3.26 to Tomcat 4.0.4 PROBLEM with mod-Jk on solaris

2002-09-12 Thread Vincent . Gaboriau
First Engine name=Standalone defaultHost=localhost debug=0 must be : Engine name=Standalone defaultHost=ebusiness.corp.teradyne.com debug=0 In your workers.properties, you have: worker.ajp13.host=ebusiness.corp.teradyne.com Is ebusiness.corp.teradyne.com knowned?

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Short, Dave
Thanks, I'll check this out. Is there Tomcat documentation that covers this stuff? -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: September 12, 2002 7:48 AM To: 'Tomcat Users List' Subject: RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem There should be a Host

RE: Listener with Tomcat4.0.4

2002-09-12 Thread Heligon Sandra
Thanks a lot it works -Original Message- From: Siddharth [mailto:[EMAIL PROTECTED]] Sent: 12 September 2002 14:03 To: Tomcat Users List Subject: Re: Listener with Tomcat4.0.4 replace web-app_2_2.dtd With web-app_2_3.dtd in your web.xml Siddharth - Original Message - From:

RE: Apache 2, mod_jk2, inprocess, w2k, classpath ?

2002-09-12 Thread Vincent . Gaboriau
You could just specify the directory where your jars are in the java.class.path. -Message d'origine- De : Andre Schild [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 12 septembre 2002 17:11 À : [EMAIL PROTECTED] Objet : Apache 2, mod_jk2, inprocess, w2k, classpath ? Hello, I'm trying to

RE: Apache 1.3.26 to Tomcat 4.0.4 PROBLEM with mod-Jk on solaris

2002-09-12 Thread Habibak haAlbek
yes. It is the name of a machine. I changed the name from localhost to the machine name even tho tomcat and apache are on the same machine. still a problem. En tous cas Merci Monsieur! [EMAIL PROTECTED] wrote:First must be : debug=0 In your workers.properties, you have:

Tomcat 4.1.10 starting problems under WIN2000!

2002-09-12 Thread Alexander Schmidt
Hi! When I want to start Tomcat 4.1.10 I get the Error- Message can´t find C:\j2sdk1.4.0\bin\bin. He has the wrong path, because what he searches is in C:\J2SDK1.4.0\bin. How can I correct this? Thanks A. Schmidt

other applications kill tomcat on Solaris

2002-09-12 Thread Brian Radovich
Howdy We have a application that we have installed at user sites. A couple of times we have seen tomcat die when another application is started. I didn't get a lot of time to diagnose it, but has anyone seen this before or have some suggestions to try when I go back on site? TIA Brian --

Antw: RE: Apache 2, mod_jk2, inprocess, w2k, classpath ?

2002-09-12 Thread Andre Schild
Somtimes it's just too obvious ! Thanks a lot. André [EMAIL PROTECTED] 12.09.2002 17:21:57 You could just specify the directory where your jars are in the java.class.path. -Message d'origine- De : Andre Schild [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 12 septembre 2002 17:11 À :

New Connector Binaries Available

2002-09-12 Thread Turner, John
Hello - Well, it was a brutal, bloody battle, but I managed to build mod_jk and mod_jk2 for both Apache 1.3 and Apache 2.0.40 on RedHat Linux 7.2. All four files (mod_jk and mod_jk2 for both Apache versions) were built from 4.1.10 source. I haven't had a chance to test any of them against my

RE: Tomcat 4.1.10 starting problems under WIN2000!

2002-09-12 Thread Turner, John
What is the value of JAVA_HOME? Does it have a trailing bin? It shouldn't. John -Original Message- From: Alexander Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:27 AM To: Tomcat Users List Subject: Tomcat 4.1.10 starting problems under WIN2000!

RE: Apache authentication info failed to pass to Tomcat 4.0.3

2002-09-12 Thread Xiaoyu Zhang
I don't see it in nightly build list. Can I grab it from CVS tree? If so, what's the module name I can use to download latest coyote? Thanks, Xiaoyu -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:21 AM To: Tomcat Users List

RE: registering variables

2002-09-12 Thread Andreas Mohrig
I don't know Struts, but if it is possible to register variables in other scopes with the help of Struts it gives me the creeps/makes me shudder and would not shine a good light on Java as a programming language. Why should you want to register a variable in the first place? Java is good for

mod_jk.conf-auto not updated

2002-09-12 Thread Heligon Sandra
I have the following tomcat directory: CATALINA_HOME\webapps examples tomcat-docs webdav manager newapp The sub-directory newapp has been created when I have unzipped a file

RE: mod_jk.conf-auto not updated

2002-09-12 Thread Turner, John
Do you have a Context element in server.xml for newapp? John -Original Message- From: Heligon Sandra [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:37 AM To: '[EMAIL PROTECTED]' Subject: mod_jk.conf-auto not updated I have the following tomcat

Internal Server Error

2002-09-12 Thread Michael Timpe
Hi, I get an Internal Server Error very often after an idle time of some minutes. What can I do? Platform: - Win NT / Win 2000 - Apache 1.3.26 - mod_jk - Tomcat 4.0.3 (P.S.: on a linux system it is stable and we have no problems! This error occurs only on Windows machines). Greetings

RE: registering variables

2002-09-12 Thread Felipe Schnack
Well, actually I'm talking about the TagExtraInfo. With it, you can register variables in the tag scope... I would like to dinamically create these variables. I will not enter in details of why I want to do that, but it's relative to data access... It's possible or not? Maybe I can make a

RE: Tomcat 4.1.10 starting problems under WIN2000!

2002-09-12 Thread Durham David Cntr 805CSS/SCBE
set JAVA_HOME to c:\jdsk1.4.0 not c:\jdsk1.4.0\bin -Original Message- From: Alexander Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:27 AM To: Tomcat Users List Subject: Tomcat 4.1.10 starting problems under WIN2000! Hi! When I want to start Tomcat

difficulties using log4j

2002-09-12 Thread Koes, Derrick
Has anyone run into any difficulties getting log4j 1.2.26 working in Tomcat? It works fine for me if I run startup.bat from the command line. However, if I try to run from the start menu (D:\j2sdk1.4.0_02\bin\java.exe -jar -Duser.dir=C:\Program Files\Apache Group\Jakarta\tomcat-4.0.4

Re: Tomcat 4.1.10 starting problems under WIN2000!

2002-09-12 Thread Alexander Schmidt
Thanks! That´s because the JSPs doesn´t work. Tomcat wants to copy information in a folder and he can´t! Thanks A. Schmidt - Original Message - From: Durham David Cntr 805CSS/SCBE [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 5:43 PM

RE: registering variables

2002-09-12 Thread Felipe Schnack
Hey, if I register as PAGE_SCOPE it doesn't do the job? On Thu, 2002-09-12 at 12:43, Felipe Schnack wrote: Well, actually I'm talking about the TagExtraInfo. With it, you can register variables in the tag scope... I would like to dinamically create these variables. I will not enter in

upgrading to 4.1!

2002-09-12 Thread psanwald
hey everyone, I'm been using tomcat 4.0.3 and apache 1.3 connecting with mod_webapp, and it's been working spiffy, except for one problem. every now and again, it will only serve half a jsp page. it will send data, and then just stop before it serves the whole page. the logs show nothing out

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Habibak haAlbek
John, I downgraded from tomcat 4.0.4 to 3.3.1 . I left the httpd.conf and workers.properties intact with the exception of the new tomcat home variable in workers file. I even kept the mod_jk.so I downloaded from your site for apache 1.3.26 and tomcat 4.0.4. This time I did not touch

Setting the inprocess worker

2002-09-12 Thread Sasha Kraljevic
Hi, First let me apologize if I ask something obvious but as this is my first appearance on this list please bear with me. Here is the problem... I have Apache 2.40/Tomcat 4.1.0/JDK 1.4.0_02/Win2000 I have set the inprocess worker and the Tomcat starts within Apache process but when I try to

Re: apache error?

2002-09-12 Thread charbel . achkar
Yes. Its best to add it with the mod_jk file that you are then including in the httpd.conf -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

isapi filter

2002-09-12 Thread Jon Morgan
Well, IIS works as does tomcat. The plugin appears to almost work. Perhaps there is a problem or someone there might shed some light on this for me. I try to access the extension and I see it hit tomcat. Tomcat gives me a 404 error but IIS logs a 200. My browser displays the 404.

RE: Can anyone Undeploy an Existing Application in 4.1.10?

2002-09-12 Thread Ben Rometsch
Yes I have. You can't undeploy an existing application through that app. You can only remove an application, which is different. I'm pretty sure the http://localhost:8080/manager/undeploy?path=/webapp component is not working - has anyone managed to get it functioning properly? -Original

Help Deploying Servlet

2002-09-12 Thread Chuck Carson
I have the following servlet: $TOMCAT_HOME/webapps/ROOT/WEB-INF/classes/AddNewsItem.class I addded this to WEB-INF/web.xml web-app servlet servlet-nameAddNewsItem/servlet-name servlet-classAddNewsItem/servlet-class /servlet /web-app I restarted tomcat but I keep getting 404's

RE: Url Mapping with mod_jk

2002-09-12 Thread Anthony Milbourne
Hi I'm still trying to get this URL mapping to work. I have sorted out some other problems in the mean time but still have a problem (a different one) with URL Mapping. As an asside: Your HowTo was very useful Jonh. It turned out that I had a previous deffinition of the virtualhost I wanted

AW: tomcat 4.1.10 mishandling nested variables in tags?

2002-09-12 Thread Daniel Schmid
Is exactly the same for me. I work with includes in the index.jsp. All the included template which uses a tag seem to make troubles in 4.1.10. the same app works like a charm in 4.0.4 with jasper 1. Daniel Schmid -Ursprüngliche Nachricht- Von: Dave Townsend [mailto:[EMAIL PROTECTED]]

RE: tomcat 4.1.10 mishandling nested variables in tags?

2002-09-12 Thread Jacob Heric
I upgraded to 4.1.10 and got some similar, strange behaviour with variables in my tags showing up null. Here is the work around I used: I disabled tag handler pooling on the jsp page compiler in the global web.xml file as follows: at $CATALINA_BASE/conf/web.xml I added: servlet

  1   2   >