RE: multiple instances of tomcat

2003-02-06 Thread Powell.Kris
You need to set the CATALINA_BASE environment variable for each instance, so in the bin directory: set CATALINA_BASE=c:\aa1 startup.bat set CATALINA_BASE=c:\aa2 startup.bat Make sure you also have the shutdown ports (8005) set to two different values in the server.xml files. You can add the

Re: mod_jk2

2003-02-06 Thread Jukka Raanamo
Hi Mark, Since you've got the whole thing working, do you know if for the load balancer to be able to keep track with what request belongs to what session, session id's must be written to the uri instead of using cookies? I got it otherwise working with Apache 2.0.44/Tomcat 4.1.18/JK2 2.0.43

Re: Tomcat's examples and tomcat-docs Directories

2003-02-06 Thread Bill Barker
Bio Jazz [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I am setting up Tomcat on my Linux machine, and am curious about ../webapps/examples and ../webapps/tomcat-docs directories. I have removed the context for the examples directory from the server.xml file,

Re: [OT]JSP defense - can you point me in the right direction

2003-02-06 Thread Bill Barker
Will Hartung [EMAIL PROTECTED] wrote in message 06cf01c2cd84$6f350cc0$0101@Will">news:06cf01c2cd84$6f350cc0$0101@Will... From: Denise Mangano [EMAIL PROTECTED] Sent: Wednesday, February 05, 2003 5:16 PM Subject: [OT]JSP defense - can you point me in the right direction Seeing as

Re: mod_jk2

2003-02-06 Thread Mark Eggers
Unfortunately, I don't Jukka. Right now I have only one system to work with so I'm not load balancing. If I remember correctly, I think you have to use URI rewriting in order to manage load-balanced sessions . . . but don't quote me on this. /mde/ just my two cents . . . . --- Jukka Raanamo

Re: Help with Apache 1.3/Tomcat 4.1.18/JK?

2003-02-06 Thread Mark Eggers
Normally you have to compile modules with a different (extended) interface when running SSL for Apache 1.3. If your rpms for mod_jk.so were not compiled for the extended interface, they won't load or work with SSL-enabled Apache. /mde/ just my two cents . . . .

Re: JAAS login context propagation to JBoss

2003-02-06 Thread Peter Kelley
I tell a lie, you can't get access to the users session easily from a realm's authenticate method. Perhaps I could write a valve that looks at the request and looks up the realm the user belongs to. I could then cache the subjects in the realm and run the rest of the pipeline using doAs(subject,

load balancing (was mod_jk2)

2003-02-06 Thread Mark Eggers
From the Tomcat 4.1.18 documentation: Identifier which must be used in load balancing scenarios to enable session affinity. The indetifier, which must be unique across all Tomcat 4 servers which participate in the cluster, will be appended to the generated session identifier, therefore allowing

Re: tomcat-apache.conf not created during Tomcat startup

2003-02-06 Thread Bill Barker
Turner, John [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I think the mentioned tomcat-apache.conf file is actually called mod_jk.conf now, and applies only to using JK. Going forward, you'll want to avoid counting on WARP...its deprecated and no longer

Re: [OT]JSP defense - can you point me in the right direction

2003-02-06 Thread Martin Jacobson
Denise Mangano wrote: Wow. Thank you all so much for responding to this question. Its getting quite frustrating hearing them saying CGI CGI CGI... especially since they are looking for a 'quick' solution and haven't done any research to the advantages/disadvantages of using one technology over

Multi-homing

2003-02-06 Thread Raj
Hi I want to Multi-home two different websites on the same server using multipe IP addresses. For example if I wanted to host www.test1.com www.test2.com on one server I will need an IP address for each of them and Apache/Tomcat should know how to find each. Can you please help me out. Regards

installing war file using manager application

2003-02-06 Thread Michael Muller
I'm trying to use the manager application to install a war file and I can't figure out what to put in the three fields that show up on the web page. I have created admin and manager roles, and an account for myself that has both these roles. I'm trying to install the struts documentation was

Cannot add new folders to webapps

2003-02-06 Thread Wileynet
All of a sudden, out of the blue. I cannot add a new folder to the webapps directory for some reason ??? http://localhost:port/dir/ HTTP Status 404 -/sc/index.html Description The requested recourse is not available. I can see everything else great. Folders I added a few days ago pop up

Tomcat and Apache

2003-02-06 Thread Richard Johnstone
I apologise for sending this as I know there are about 50 posts daily on this subject but I can't get the 2 of these to link. I have checked the archives and help docs and everything seems in place but when I call my servlet without the 8080 port I get nothing. Looking at the apache logs it says

Antwort: Tomcat and Apache

2003-02-06 Thread Dietmar . Mueller
You have to define an ajp Connector like this in your server.xml !-- Define an AJP 1.3 Connector on port 8009 -- Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=8009 minProcessors=5 maxProcessors=75 acceptCount=10 debug=0/ Then it should work.

Problem with memory management useing tomcat

2003-02-06 Thread Piotr Stanek
Hi! I have a problem with memory managament. I have an application (content management of art portal) running on tomcat 4.1.18 and useing mysql 3.23. The application is running on a linux server (Redhat 7.1, RAM 512 Mb). I run tomcat with options -Xmx64 -Xms32 and after one day of running the

Re: Antwort: Tomcat and Apache

2003-02-06 Thread Richard Johnstone
Sorry, forgot to say that is already in Tomcat creates one as standard in it's build !-- Define an AJP 1.3 Connector on port 8009 -- Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=8009 minProcessors=5 maxProcessors=75 acceptCount=10 debug=0/

Re: mod_jk2

2003-02-06 Thread Jukka Raanamo
OK, I got it working now. It seems that the tomcatId in workers2.properties must match jvmRoute attribute in server.xml or else nothing works, something that could be mentioned in JK2 documentation. But yes, it does work with cookies and no url rewriting is required. -jukka- Mark Eggers

bug in java api? (ot)

2003-02-06 Thread Felipe Schnack
Take a look at the following code GregorianCalendar cal = (GregorianCalendar)Calendar.getInstance(); cal.set(2000, Calendar.FEBRUARY, 1); System.out.println(cal.isLeapYear(2000)); Shouldn't false be printed on the screen? I see true here in my machine :-) -- Felipe Schnack Analista de

RE: bug in java api? (ot)

2003-02-06 Thread Daniel Brown
But 2000 *was* a leap year...? http://world.std.com/~dpbsmith/leapyearfaq.txt -Original Message- From: Felipe Schnack [mailto:[EMAIL PROTECTED]] Sent: 06 February 2003 11:50 To: Tomcat Users List Subject: bug in java api? (ot) Take a look at the following code

RE: bug in java api? (ot)

2003-02-06 Thread Ralph Einfeldt
In gregorian calendar aplies following rule isLeapYear = (year mod 4 = 0) and ((not year mod 100 = 0) or (year mod 400 = 0)) 2000 mod 4 = 0 - true not 2000 mod 100 = 0 - false 2000 mod 400 = 0 - true true and (false or true) - true -Original Message- From: Felipe Schnack

RE: bug in java api? (ot)

2003-02-06 Thread mech
Indeed 2000 was a leap year with 29th of Feb. Every year that can be divided by four is a leap year, except it can be divided by 100 than it's not. But if it can be divided by 400 then it is a leap year again. ;-) So because of the last rule, 2000 was a leap year and the API is correct...

Re: bug in java api? (ot)

2003-02-06 Thread Tim Funk
Check your calendar first ... http://www.earth.com/calendar?2%2F2000 And a FAQ (thanks google!): http://world.std.com/~dpbsmith/leapyearfaq.txt Y2K was a leap year. -Tim Felipe Schnack wrote: Take a look at the following code GregorianCalendar cal =

Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Varley, Roger
Hi I've just upgraded from Tomcat 3.2 to Tomcat 4.4.18 with IIS using JK2. It's been a struggle to get it to work, but I've now got everything working except I don't seem to have an iis_redirect.log file (or it's equivalent) despite setting logLevel = debug in the registry entries. Have I missed

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Reynir Hübner
Check your event log (controlpanel - administrator tools - event viewer) Hope it helps -reynir -Original Message- From: Varley, Roger [mailto:[EMAIL PROTECTED]] Sent: 6. febrúar 2003 12:29 To: Tomcat Users List (E-mail) Subject: Tomcat 4.1.18, JK2 - no iis_redirect.log Hi

RE: Tomcat and Apache

2003-02-06 Thread Turner, John
Well, what URL are you using? What ServerName are those JkMount statements tied to? If you're doing an Include of mod_jk.conf, you shouldn't have anything in httpd.conf but the LoadModule line and the Include line. My guess is your manually entered JK config in httpd.conf is conflicting with

Bug? in Tomcat 4.1.18 with TagLib

2003-02-06 Thread Etienne
Hi, I am new to this list, and I add problem retrieving archive, so sorry if that question was already answered. My web application was running on tomcat 3,2 and 4.0.3 it was running well. Now that I have switch to Tomcat 4.1.18 I have a strange problem with one of my custom tag. It seems

RE: Help with Apache 1.3/Tomcat 4.1.18/JK?

2003-02-06 Thread Turner, John
/etc/httpd/conf/mod_jk.conf is not where the ApacheConfig classes put mod_jk.conf. I'm surprised there isn't an Apache error like can't find file or something. The ApacheConfig classes put mod_jk.conf in $CATALINA_HOME/conf/auto. Does the Include even work? John -Original Message-

Jk2 connector - directives context and servlet for uri in workers2.properties

2003-02-06 Thread Martin Volatier
Hello all, I have perused the archives of the tomcat-users mailing list, to no avail. Here's my situation: Tomcat 4.1.18, Apache 1.3, mod_jk2-ap13-2.0.1-1.2.1 on Redhat 7.2. I am trying to map a path or uri in workers2.properties to a *different* servlet context in Tomcat's server.xml, in vain

RE: Bug? in Tomcat 4.1.18 with TagLib

2003-02-06 Thread John Trollinger
This is because of tag pooling. Please see http://issues.apache.org/bugzilla/show_bug.cgi?id=13392 or http://issues.apache.org/bugzilla/show_bug.cgi?id=16001 or http://issues.apache.org/bugzilla/show_bug.cgi?id=10220 And there are lots more. John -Original Message- From: Etienne

RE: Bug? in Tomcat 4.1.18 with TagLib

2003-02-06 Thread Etienne
Tks! Etienne Laverdière [EMAIL PROTECTED] 514-277-7792 -Original Message- From: John Trollinger [mailto:[EMAIL PROTECTED]] Sent: February 6, 2003 8:40 AM To: 'Tomcat Users List' Subject: RE: Bug? in Tomcat 4.1.18 with TagLib This is because of tag pooling. Please see

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Varley, Roger
Thanks Reynir I found it. Is it possible to change this behaviour back to its original 3.2 behaviour. Our development server is physically located at the other end of the building and I would like to be able to view the log without taking a long walk :) Regards Roger -Original Message-

RE: jsp:include semantics?

2003-02-06 Thread David Keyes
OK, oops, the path should have been relative to the webapp. But now I'm seeing a different set of problems. My original call is to a servlet /myapp/myservlet/param1/param2. That servlet forwards to a jsp /myapp/wrapper.jsp. The jsp then includes the same servlet that called it, but

FreeBSD/Apache2/Tomcat4.1/Jk

2003-02-06 Thread Niklas Saers Mailinglistaccount
Hi all, as you know from my posting Fri, 31 Jan 2003 00:05:05 +0100 (CET), I am setting up Tomcat 4.1.18 Apache 2.0.44 on my FreeBSD 4.7 server. I build Apache with from source with: ./configure --prefix=/usr/local/apache2 --enable-auth-dbm --enable-auth-digest --enable-file-cache

RE: Problem with memory management useing tomcat

2003-02-06 Thread Shapira, Yoav
Howdy, A couple of notes: 1. Could it possibly be that your application requires more than 64MB of RAM? 3 visits is a lot in some contexts. Profile your application and run some stress tests (hopefully on a test server, not the production one ;)) to determine the real memory needs. Look

RE: Tomcat and Apache

2003-02-06 Thread Richard Johnstone
OK, took all the stuff out of httpd.conf so all that is in there in the loadmodule and include In mod_jk.conf it has JkMount /avcweb ajp13 JkMount /avcweb/* ajp13 So to call I am trying http://999.99.999.99/avcweb/servlet/MyClass Still no luck [EMAIL PROTECTED] 02/06/03 01:27pm

RE: Web.xml mistake results in Context unavailable !?

2003-02-06 Thread Shapira, Yoav
Howdy, Someone else already suggested workarounds. Just thought I'd chime in with my 2 cents (US): you're on a wrong track. It is your responsibility (or the responsibility of whoever packages your application for deployment) to get the web.xml file correct. It has a clearly defined DTD. I

RE: Tomcat and Apache

2003-02-06 Thread Bill
I havent seen a context definition anywhere in your posts, are you creating one? -b On Thu, 2003-02-06 at 09:28, Richard Johnstone wrote: OK, took all the stuff out of httpd.conf so all that is in there in the loadmodule and include In mod_jk.conf it has JkMount /avcweb ajp13

Re: Cannot add new folders to webapps

2003-02-06 Thread Bill
wiley Just a stab in the dark...have you checked that the permissions on the folder are correct? I had a similar problem once where a file I moved into my directory structure wasnt accessible to the app. On Wed, 2003-02-05 at 20:51, Wileynet wrote: All of a sudden, out of the blue. I cannot

Shutdown.sh does not work when long lasting operations, such as SQL Queries, are still active!

2003-02-06 Thread Andreas . Niehwoehner
Currently we are running a web application on AIX 4.3.3.0 with ibm jre 1.3.1 and tomcat 4.0.3 final. When trying to shutdown the tomcat server by means of shutdown.sh, we encounter the following problem: The shutdown script is executed properly but the tomcat server does not terminate. In my

Glue 2.3.2 with Tomcat 4.0.6

2003-02-06 Thread Janzen, Ivan
Hi, We have used GLUE 2.3.2 with Tomcat 4.0.1 and everything worked well. After switching to Tomcat 4.0.6 our SOAP-Call didn't work anymore. All method-arguments were passed as null-values. The configuration of GLUE was not changed. Has anyone of you successfully used GLUE 2.3.2 with Tomcat

RE: Tomcat and Apache

2003-02-06 Thread Turner, John
Did you map that servlet in web.xml?? John -Original Message- From: Richard Johnstone [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 9:28 AM To: [EMAIL PROTECTED] Subject: RE: Tomcat and Apache OK, took all the stuff out of httpd.conf so all that is in there

RE: Shutdown.sh does not work when long lasting operations, such as SQL Queries, are still active!

2003-02-06 Thread Turner, John
I think what you want to do is add/write a Listener that will look for the shutdown event and kill the threads and take other actions as appropriate. But, I'm no developer, so others might have better solution. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Tomcat and Apache

2003-02-06 Thread Richard Johnstone
Yup, avcweb is just a copy of examples. [EMAIL PROTECTED] 02/06/03 02:26pm I havent seen a context definition anywhere in your posts, are you creating one? -b On Thu, 2003-02-06 at 09:28, Richard Johnstone wrote: OK, took all the stuff out of httpd.conf so all that is in there in the

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Ignacio J. Ortega
Roger, Thanks Reynir I found it. Is it possible to change this behaviour back to its original 3.2 behaviour. Our development server is physically located at the other end of the building and I would like to be able to view the log without taking a long walk :) Yes it's possible add

RE: Tomcat and Apache

2003-02-06 Thread Richard Johnstone
Nope. Do I need to? I didn't realise I need to as the page loaded using http://999.99.999.99:8080/avcweb/servlet/MyClass, it's just http://999.99.999.99/avcweb/servlet/MyClass that doesn't seem to work [EMAIL PROTECTED] 02/06/03 02:35pm Did you map that servlet in web.xml?? John

FW: cvs commit: jakarta-tomcat-connectors/jk/native2/server/isapi jk_isapi_plugin.c

2003-02-06 Thread Robert Priest
-Original Message- From: Marcus Kellermann Sent: Thursday, February 06, 2003 9:38 AM To: Robert Priest Subject: RE: cvs commit: jakarta-tomcat-connectors/jk/native2/server/isapi jk_isapi_plugin.c The problem is exactly like Ignacio says the ISAPI filter is intercepting even valid URLS

RE: Help with Apache 1.3/Tomcat 4.1.18/JK?

2003-02-06 Thread Webb Stacy
Thank you for the suggestions. Unfortunately I'm still getting the same failures. Normally you have to compile modules with a different (extended) interface when running SSL for Apache 1.3. If your rpms for mod_jk.so were not compiled for the extended interface, they won't load or work

export exel stylesheets from jsp

2003-02-06 Thread Power-Netz \(Schwarz\)
Hi , does anyone know if theres a package to make exel stylesheets ? I want to dump a database and make downloadable on the fly for the user.. Ihr Support-Team POWER-NETZ® Full-Service-Provider Online-Support: Support: 0190 - 15 11 15 (EUR 0,62/Min)

RE: multiple instances of tomcat

2003-02-06 Thread Henry Krasny
Thanks, your suggestions worked. I altered the shutdown port for each instance and I started each instance in a separate window (setting the CATALINA_BASE variable before each startup). I didn't try the logging thing. Henry -Original Message- From: Powell.Kris [mailto:[EMAIL

RE: Tomcat and Apache

2003-02-06 Thread Turner, John
OK, is 999.99.999.99 == localhost? You have localhost as your Host in server.xml. Are you just being paranoid by disguising localhost with 999.99.999.99 or are you actually using some other value besides localhost in your request URL? Basically, everything is a chain. One missing piece in the

RE: export exel stylesheets from jsp

2003-02-06 Thread Barney Hamish
I assume you mean spreadsheet and not stylesheet... Unless you really need something complicated from excel why don't you just send a csv (comma seperated values) file. Excel can open CSV files like normal excel format spreadsheets. -Original Message- From: Power-Netz (Schwarz)

RE: export exel stylesheets from jsp

2003-02-06 Thread Turner, John
This isn't Tomcat question. Easy solution: 1. Set your Content-Type to the correct type for Excel 2. Generate a standard HTML page with the only content being a table. Excel automatically parses TR as Excel rows and TD as Excel columns. John -Original Message- From: Power-Netz

Re: compatability issue

2003-02-06 Thread Dave
Actually I reinstalled the whole env just to make sure it followed the tutorial. The mod_jk I'm using is mod_jk-2.0.43.so. Thanks for taking a look at this. Jeff Tulley wrote: Do you have one that is built for the same apache version as what you have? For instance, today I accidentally

Re: export exel stylesheets from jsp

2003-02-06 Thread Bill
There is a link on jakarta home to article on how to use POI to create Excel reports. I would think that might be a starting point... On Thu, 2003-02-06 at 10:00, Power-Netz (Schwarz) wrote: Hi , does anyone know if theres a package to make exel stylesheets ? I want to dump a database

Re: localhost:8080 connection refused

2003-02-06 Thread Dave
Turner, John wrote: For the sake of the archives, what was the solution? John -Original Message- From: David Nelson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 4:30 PM To: Tomcat Users List Subject: Re: localhost:8080 connection refused This issue is resolved.

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Varley, Roger
Thanks Reynir I found it. Is it possible to change this behaviour back to its original 3.2 behaviour. Our development server is physically located at the other end of the building and I would like to be able to view the log without taking a long walk :) Yes it's possible add

Re: [OT]JSP defense - can you point me in the right direction

2003-02-06 Thread mmtu
I'm curious to see how I get shot down... On Thu, Feb 06, 2003 at 01:11:39AM -0500, Denise Mangano wrote: Wow. Thank you all so much for responding to this question. Its getting quite frustrating hearing them saying CGI CGI CGI... especially since they are looking for a 'quick' solution and

Socket Exceptions

2003-02-06 Thread O'Neill, John
I'm trying to get an idea of the root cause for this exception, does anyone have an idea? Could it have anything to do with dropping connections, users pushing stop or the number maxProcessors? I haven't really got an idea. I am not using Apache at the moment, just straight Tomcat with the

AW: export exel spreadsheets from jsp

2003-02-06 Thread Power-Netz \(Schwarz\)
Thx all, thats very helpfull, because it's useable for Word as well. There is a link on jakarta home to article on how to use POI to create Excel reports. I would think that might be a starting point... and , jepp , it's of course spreadsheet :-) Did to much html in the last weeks ;-)

Re: JAAS login context propagation to JBoss

2003-02-06 Thread Jeanfrancois Arcand
The feature you want has been implemented in Tomcat 5 (not in Tomcat 4.1.x). You can probably port it if you realy needs it (see http://cvs.apache.org/viewcvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/security/SecurityUtil.java) or starts using Tomcat 5. -- Jeanfrancois

RE: Tomcat and Apache

2003-02-06 Thread pqin
So how does ssl play in this checklist? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: February 6, 2003 10:06 AM To: 'Tomcat Users List' Subject: RE: Tomcat and Apache

Re: Tomcat with Security manager

2003-02-06 Thread Jeanfrancois Arcand
Can you post your catalina.policy file? Your file should contains that permission: // These permissions apply to the server startup code grant codeBase file:${catalina.home}/bin/bootstrap.jar { permission java.security.AllPermission; } -- Jeanfrancois Harish Kumar K.K. wrote: Hello All Hope

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Ignacio J. Ortega
Roger, Thanks Ignacio, that seems to be working. Is there anywhere where the possible contents of workers2.properties is documented. This http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/ despite the URL given, this has information pertaining to both jk and jk2, take care.. has been the

RE: Tomcat and Apache

2003-02-06 Thread Turner, John
SSL requests are decrypted by Apache at the front-end. So, I guess, if anything, they play a part in determining whether or not Apache ever gets to the JkMount. Once it gets to JkMount, things should be the same. The only gotcha (I think) is that the SSL VirtualHost config in httpd.conf needs

jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread pqin
Which tomcat-connector do I use to build mod_jk2 for Apache 2.0.44 - Tomcat 4.1.18? where can I download? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing

RE: Tomcat and Apache

2003-02-06 Thread Richard Johnstone
Basically I call 192.4.200.65 from my PC. This is the IP address of my server. I have the servername in httpd.conf set to localhost and also the name of the host as localhost If I call the page from the actual webserver machine I use http://localhost/avcweb/servlet/MyClass from my pc I use

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Turner, John
http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0. 2/ John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:42 AM To: [EMAIL PROTECTED] Subject: jk2 for apache 2.0.44 + tomcat 4.1.18 Which

RE: Tomcat and Apache

2003-02-06 Thread pqin
I am in trouble with this tomcat-connector. I use Apache 2.0.x's SSL and run my app on tomcat. If I typed in http://1.1.1.1/myapp, I was redirected to https://1.1.1.1/myapp; then I purposely changed https back to http and hit Enter, I was redirected to http. There is only one connector in my

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Brett Neumeier
The jakarta-tomcat-connector source tarball is available in the same place as the Tomcat tarball: http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.1.18/src/ It does seem odd that the TC 4.1 releases are under jakarta-tomcat-4.0... I guess it's just one of those mysteries.

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread pqin
Is it renamed? I remember in tomcat 4.1.12, it was named Jakarta-tomcat-connector-4.1.12-src. That's why I could not find it. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]]

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread pqin
I am confused. Which tarball shall I grab? http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0. 2/ http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.1.18/src/ Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing

RE: Tomcat and Apache

2003-02-06 Thread Turner, John
OK, that isn't going to work. If Tomcat only knows localhost, calling it with 192.4.200.65 won't get anything. Also, in Apache's httpd.conf, an IP address isn't going to trigger any of the VirtualHost containers, which means there won't be any JkMounts triggered if your JkMounts are in

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Turner, John
To compile mod_jk2.so (and mod_jk.so): ./configure make make install John -Original Message- From: Brett Neumeier [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:52 AM To: 'Tomcat Users List' Subject: RE: jk2 for apache 2.0.44 + tomcat 4.1.18 The

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Turner, John
Couldn't tell you, I just know where it is now. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:52 AM To: [EMAIL PROTECTED] Subject: RE: jk2 for apache 2.0.44 + tomcat 4.1.18 Is it renamed? I remember in tomcat

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Turner, John
I think they are the same. Keep in mind that the Apache connectors have two components: Apache component (C = *.so) Tomcat component (Java = *.jar) John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:55 AM To: [EMAIL

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Varley, Roger
has been the major cause of my problems in getting Tomcat to work. For example, I only found out about the need for [shm] through the archives of this list. [shm] is needed section is needed to run i_r2.dll ? i'll test this.. shouldnt be needed at all.. or at least have a

RE: Bug? in Tomcat 4.1.18 with TagLib

2003-02-06 Thread Etienne
Does it mean that all the tag lib from the Manning Book are wrong with theses TagLib specs? The manning tag lib will never work on the 4.1.18 environment. E.L. -Original Message- From: John Trollinger [mailto:[EMAIL PROTECTED]] Sent: February 6, 2003 8:40 AM To: 'Tomcat Users List'

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread pqin
There are two places that you define shm.file, tomcat jk2.properties and apache workers2.properties. If you comment out one, you have to comment out another. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Varley,

RE: jk2 for apache 2.0.44 + tomcat 4.1.18

2003-02-06 Thread Brett Neumeier
I am not a Tomcat developer, so this is just what I have gathered by looking at this stuff for the last couple of days... It appears that there are two different streams of version numbers involved here. If you grab the file from builds/jakarta-tomcat-connectors/, then you are getting a

Cannot load JDBC driver class 'null' , again

2003-02-06 Thread Uros Kotnik
Hi, This question was probbably posted many times but I didn't found answer and I really need it. I'm using TC 4.1 DB : Hypersonic HSQLDB.jar in \tomcat_home\common\lib Server.xml -- Context path=/DBTest docBase=DBTest debug=5 reloadable=true crossContext=true Logger

RE: Cannot load JDBC driver class 'null' , again

2003-02-06 Thread pqin
Is your jdbc driver in jar file? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Uros Kotnik [mailto:[EMAIL PROTECTED]] Sent: February 6, 2003 11:24 AM To: [EMAIL PROTECTED] Subject: Cannot load JDBC driver class

RE: Tomcat 4.1.18, JK2 - no iis_redirect.log

2003-02-06 Thread Varley, Roger
There are two places that you define shm.file, tomcat jk2.properties and apache workers2.properties. If you comment out one, you have to comment out another. It's not in jk2.properties. My jk2.properties is empty, in so far as all the entries are commented out. [shm] appears to be

apache 1.3.27 Tomcat 4.1.18 mod_jk - simple *.jsp interpretation problem

2003-02-06 Thread Oliver Etzel - GoodnGo.COM \(R\)
Hello List, after installing apache 1.2.27 and Tomcat 4.1.18 with mod_jk I have interpretation problem over apache. Content of *.jsp files are shown but not interpreted. I linked my $CATALINA_HOME/webapps/examples to /usr/local/apache/htdocs And tryied to execute the exmples: *.jsp - files are

RE: Cannot load JDBC driver class 'null' , again

2003-02-06 Thread Uros Kotnik
Yes, HSQLDB.jar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 17:25 To: [EMAIL PROTECTED] Subject: RE: Cannot load JDBC driver class 'null' , again Is your jdbc driver in jar file? Regards, PQ This Guy Thinks He Knows

Re: Tomcat with Security manager

2003-02-06 Thread Neville Gomes
Hi, You could try a chmod on the directory your uploading ur files onto. Regards, Neville On Thursday 06 February 2003 10:27, you wrote: Hello All Hope somebody can help me! I am using Tomcat 4.0.3 on a Red Hat Linux 7.1 system with Apache 1.3.27, and it works fine if started without the

RE: Why won't anyone help me out??

2003-02-06 Thread Tim Moore
One nit...Apache is most definitely not licensed under the GPL, but the Apache Software License, which can be read here: http://httpd.apache.org/docs/LICENSE Notably, it allows you to redistribute modified versions without source code, unlike the GPL. -- Tim Moore / Blackboard Inc. / Software

RE: apache 1.3.27 Tomcat 4.1.18 mod_jk - simple *.jsp interpretation problem

2003-02-06 Thread Turner, John
If you are saying that www.host.com/some.jsp returns source instead of content, it is most likely because you have a JkMount that says something like /examples/*.jsp which would not match your URL, and thus, Apache would handle it as a normal text file. John -Original Message- From:

RE: jsp:include semantics?

2003-02-06 Thread Tim Moore
-Original Message- From: David Keyes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 1:00 PM To: [EMAIL PROTECTED] Subject: FW: jsp:include semantics? Hello. What are the semantics of jsp:include in Tomcat 4.0.x? It seems to me that if I jsp:include another

RE: Does TC 4.1.18 actually reuse tag handler instances?

2003-02-06 Thread Tim Moore
-Original Message- From: David M. Karr [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 1:20 AM To: [EMAIL PROTECTED] Subject: Does TC 4.1.18 actually reuse tag handler instances? I've been following some of the discussions about reusing tag handlers, but after

RE: [OT]JSP defense - can you point me in the right direction

2003-02-06 Thread Denise Mangano
Well, they're probably worried about the staying power of these newfangled technologies. CGI is understood by (say) (even lazy) (*nix) admins, while the whole concept of a Java servlet engine is a bit overwhelming at first. I think the keyword is overwhelming at first, but definitely not

RE: Help with Apache 1.3/Tomcat 4.1.18/JK?

2003-02-06 Thread Turner, John
I would just get that HAVE_JK stuff out of there 100%. Never saw that before. I can't think of anything that would break by just putting LoadModule etc right in httpd.conf without the IF statement. You've got some custom stuff there (I am not familiar with Virtuozzo)...is it possible someone

RE: Bug? in Tomcat 4.1.18 with TagLib

2003-02-06 Thread John Trollinger
Can't help you there as I do not own that book. -Original Message- From: Etienne [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 11:17 AM To: 'Tomcat Users List' Subject: RE: Bug? in Tomcat 4.1.18 with TagLib Does it mean that all the tag lib from the Manning Book

BUG...? java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-02-06 Thread Murray Furtado
From examining this list, it seems that a number of folk have tried setting up JNDI datasources as per the Tomcat HOWTOs, but have had this error returned. I've also noticed that it's been logged in Bugzilla as a bug. Does anyone know of a fix/workaround for the issue..? Can we expect it to be

RE: BUG...? java.sql.SQLException: Cannot load JDBC driver class 'nul l'

2003-02-06 Thread Turner, John
Can you post the Bugzilla URL for the bug? Null can be returned for all sorts of reasons, and in the last 6 or 8 months, the vast majority of messages I've seen on that error message on this list were pilot error, not bugs. I'm not questioning you, just curious to see what the dev team says.

RE: Socket Exceptions

2003-02-06 Thread O'Neill, John
I wondering if no one has come across this problem or is it just to broad of an exception? John -Original Message- From: O'Neill, John Sent: Thursday, February 06, 2003 9:28 AM To: '[EMAIL PROTECTED]' Subject: Socket Exceptions I'm trying to get an idea of the root cause for this

RE: BUG...? java.sql.SQLException: Cannot load JDBC driver class 'nul l'

2003-02-06 Thread Uros Kotnik
There must be a way to connect to DB from TC ? -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 17:54 To: 'Tomcat Users List' Subject: RE: BUG...? java.sql.SQLException: Cannot load JDBC driver class 'nul l' Can you post the Bugzilla

RE: BUG...? java.sql.SQLException: Cannot load JDBC driver class 'nul l'

2003-02-06 Thread Turner, John
There most certainly ismany, many, many people are doing it. JDBC drivers work fine, for all sorts of databases: Oracle, MySQL, SQL Server 2000, Postgres, Firebird, etc. etc. etc. John -Original Message- From: Uros Kotnik [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06,

RE: Socket Exceptions

2003-02-06 Thread Larry Meadors
I have seen this in cases you described (pushing stop, or closing the browser) after the servlet has started sending output. Obviously, users never see it (they pressed stop or closed the browser), but it does show up in my error log. I finally added code to catch and suppress it in my servlet.

RE: RE: Shutdown.sh does not work when long lasting operations, such as SQL Queries, are still active!

2003-02-06 Thread Andreas . Niehwoehner
Unfortunately there is no way to stop a thread (Thread.stop() is deprecated and the native code, the threads are, in ignore Thread.interrupt()). What kind of listener do you mean? We extended the javax.servlet.http.HttpServlet class, but the destroy method does not get called until all http

  1   2   3   >