Re: Can't get tomcat 4 to work with mod_jk and Apache

2002-08-21 Thread Scott Adamson
Yes I have read the other threads and all the documentation, and I didn't find anyone else with exactly the same problem. I don't think I have abused this list at all (if Tomcat was documented properly I doubt I would need to ask questions), apologies for the duplicates, but there seems to be a

Can someone explain catalina.home catalina.base?

2002-08-21 Thread Michael
I've searched everywhere and can only find conflicting information about these properties. Basically I want to deploy my webapp without modifying ANY files under the CATALINE_HOME directory (where I installed Tomcat). I've tried every combination of catalina.home catalina.base and cannot get

Re: Client Certificates on Tomcat 3.3.1

2002-08-21 Thread Rodrigo Ruiz
Ok, a step forward After some changes in my certificates, I have a client that successfully sends its certificates to the server. From the browser, it doesn't connect at all (no certificate pop ups, and no connection stablished) Explorer requests now raise the following exception in Tomcat:

Stopping application installation?

2002-08-21 Thread Mark O'Driscoll
I want to stop the installation of an application under certain conditions. I have a servlet that is loaded on startup and I check some things in its init() method. I want to be able to disable the application at this point. Throwing a ServletException in the init() doesn't seem to work.

Re: manager

2002-08-21 Thread glen
The version is jakarta-tomcat-4.0.3. The app does use some utility classes located in common/lib, but the class files specific to the app, the ones that I am editing and trying to reload, are all located in /WEB-INF/classes. The log for this webapp shows: 2002-08-21 01:15:26

Re: Can someone explain catalina.home catalina.base?

2002-08-21 Thread Jhair Tocancipa Triana
== Michael [EMAIL PROTECTED] writes: I've searched everywhere and can only find conflicting information about these properties. Could you be more specific? Basically I want to deploy my webapp without modifying ANY files under the CATALINE_HOME directory

RE: manager

2002-08-21 Thread David Zonsheine
Glen Hi, I am reading the Tomcat Users List and want to ask you a question as a Tomcat user, I am using Apache soap and Tomcat to communicate between remote machines. In Apache soap documentation it is written that you can transfer attachments as big as 20MB. I need to transfer files as big

Q: subdomains for vhosts

2002-08-21 Thread Power-Netz \(Schwarz\)
Hi, I tried to setup a subdomain for a vhost, but it only reaches the sld vhost entry. As you can see i tried two version, but neither routet bugzilla to the /ticket webapp :-( Any ideas ? for tc.3.3.2 : --- v2 Host name=xxx.de Alias name=bugzilla.xxx.de

CLIENT-CERT Authorization in Tomcat 3.3.1

2002-08-21 Thread Rodrigo Ruiz
I want to configure a webapp to use CLIENT-CERT authorization. How do I specify which client certificates are allowed to access my webapp? Thanks in advance -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE : Can someone explain catalina.home catalina.base?

2002-08-21 Thread Michael
Basically I want to deploy my webapp without modifying ANY files under the CATALINE_HOME directory (where I installed Tomcat). Which directories do you have under CATALINA_BASE? Is your webapp under CATALINA_BASE or under CATALINA_HOME? Please take a look at

Tomcat + SSL + IO Taglib

2002-08-21 Thread QUERTEMONT Christophe
Hello, I'am connecting to Tomcat using SSL, but without client authentification (clientAuth=false in server.xml). When I try to use io taglib, here is an JSP example : ... url = https://localhost:8443//Cache?newsServer=moreover_newsnewsFeedName% io:request url=%=url%/ ... I always got this

RE: Tomcat + SSL + IO Taglib

2002-08-21 Thread Andreas Mohrig
I'm afraid your server doesn't have a certificate for itself (i.e. localhost), from which it is requesting a resource. At least it doesn't know itself under this name (localhost). You have to import your server certificate (or the certificate of the CA that signed it) with keytool into your java

RE: Tomcat + SSL + IO Taglib

2002-08-21 Thread Andreas Mohrig
And to finish my own thought (this time before sending the message ;-): You should then use your official server-name instead of localhost, i.e. the name which is set in the certificate. Java is really picky about the certificates it trusts. By the way: This has nothing to do with client

Re: RE : Can someone explain catalina.home catalina.base?

2002-08-21 Thread Jhair Tocancipa Triana
- Server.xml contains: - Context reloadable=true debug=10 - docBase=c:\idtect\projects\oemserver\web path=/oemserver / - I then go to DOS and type: - C:\%CATALINA_HOME%\bin\startup Using CATALINA_BASE: - c:\idtect\projects\oemserver\conf\tomcat Using

RE: Tomcat + SSL + IO Taglib

2002-08-21 Thread QUERTEMONT Christophe
Thanks for your quick answer ! But I have never work with SSL before, so I am getting a little confused. How can I get a certificate for my server ? The only thing I have done so far is creating a keystore (keytool -genkey -alias tomcat -keyalg RSA). Every thing works fine except for the

tomcat4 + declarative security

2002-08-21 Thread jfc
Hi, I have two questions regarding declarative security ( I use JBoss2.4.x+Tomcat4.0 + struts1.1, on suse linux7.2 - ): 1.Is tomcat 4 supposed to be able to distinguish previously authenticated users from unauthenticated users? I assumed the answer to this question is yes because

Unique session ID upon redirection

2002-08-21 Thread A.P Kwee
Hi, I hope that this is the right channel to post this question. I am trying to force all requests for *.html pages to a jsp file which will perform some checks on whether the users has logged on before displaying the html file. I have successfully redirected all request from my apache

RE: Tomcat + SSL + IO Taglib

2002-08-21 Thread Andreas Mohrig
First of all, since you are trying to get a resource from the server itself, it might be completely sufficient to use http instead of https, i.e. the url http://localhost:8080//Cache?newsServer=moreover_newsnewsFeedName should work (assuming standard configuration). You won't have to bother

RE : RE : Can someone explain catalina.home catalina.base?

2002-08-21 Thread Michael
My web app directory is physically residing in c:\idtect\projects\oemserver\web, which is what i defined in the server.xml for the context docBase. I think the catalina.base is set properly, because it is finding my server.xml and tomcat-users.xml files, as well as it's logging to the

RE: tomcat4 + declarative security

2002-08-21 Thread Andreas Mohrig
The answers are yes and yes. You can determine the user's logged-in-ness with a call to request.getRemoteUser(), which should return null if he is not and his name (login) otherwise. This should always be the case, regardless of the currently requested resource having a security-constraint or

RE: Tomcat + SSL + IO Taglib

2002-08-21 Thread QUERTEMONT Christophe
Great, thanks a lot for your help !!! -Original Message- From: Andreas Mohrig [mailto:[EMAIL PROTECTED]] Sent: mercredi 21 août 2002 12:28 To: 'Tomcat Users List' Subject: RE: Tomcat + SSL + IO Taglib First of all, since you are trying to get a resource from the server itself, it

RE: Can't get tomcat 4 + mod_jk + apache to work

2002-08-21 Thread Andreas Mohrig
It seems to be a problem of your apache configuration. Your error message seems to indicate that the virtual host is not recognized, since not even the alias for the static content has any effect. Are you depending on the VirtualHost-part? If not, try to replace it (the whole block) with the

RE: OFF-TOPIC: Pointers to CallableStatement docs? (SOLVED)

2002-08-21 Thread Turner, John
First, thanks to everyone who replied with help and suggestions. Quick summary of the problem: stored procedure with 5 input parameters, 5 output parameters, and a return status. Normally, you would think that the correct CallableStatement would be: cstmt = sConn.prepareCall({? = call

Upgrade from 4.0.2 to 4.0.4

2002-08-21 Thread Shannon Scott
Hello, I have Apache 1.3.20 / Tomcat 4.0.2 with mod_jk running on RedHat 7.2. I used the rpms to install tomcat 4.0.2, but they do not exist for tomcat4.0.4. Is there an easy way to upgrade to 4.0.4? ( just copy specific files to the old Tomcat4 location?) Should I remove the 4.0.2 rpms, before

Hang in ServletOutputStream.print

2002-08-21 Thread Paul Harvey
We have a servlet which appears to hang randomly (for times up to minutes) in ServletOutputStream.print. This is with tomcat 4 and JDK 1.4 on Solaris 7. Has anyone else come across this problem? I am posting this on behalf of a colleague in Oz who is trying to sort this out. We cannot

Tomcat 3.x Vs Tomcat 4.x

2002-08-21 Thread D Bamud
Tomcat 3.x Vs Tomcat 4.x I have a web application named myapp in C:\jakarta-tomcat-4.0.4\webapps dir. Also have C:\jakarta-tomcat-4.0.3\webapps\myapp_att dir which isn't a web appl but a dir used by my myapp. In my jsp (in the myapp) I provide links to attachments from

RE: BAD packet - Apache 2.0.39 + mod_jk (or mod_webapp) on linux

2002-08-21 Thread Sullivan, Mark E
The AC_PROG_CPP error is normal, and can be expected with some versions autoconf. This error seems like it would be caused by the configure script failing, or possibly a bad distribution. However, i'd redirect the output of the configure command to a file for easier inspection. -Original

RE: Upgrade from 4.0.2 to 4.0.4

2002-08-21 Thread Turner, John
I would back up your webapps, if they are under the tomcat base, and save copies of your *.xml files. Then download the binaries from here: http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.4/bin/ The binary install is very straightforward, and as far as I know, there is nothing

Re: Specifying location of tomcat-users.xml

2002-08-21 Thread Irina Lishchenko
On Tuesday 20 August 2002 17:32, you wrote: I'm running tomcat from within IDEA, and I'm using the -config command line parameter to tell tomcat where my server.xml file is located (in my project directory). But tomcat is looking for tomcat-users.xml in the CATALINA_HOME directory. Is there

RE : RE : RE : Can someone explain catalina.home catalina.base?

2002-08-21 Thread Michael
I upgraded to Tomcat 4.1.9 beta to see if that made a difference. I also changed my JDK from 1.4.1beta to 1.3.1. This didn't change anything. Then I found a post in the mailing list archives: http://marc.theaimsgroup.com/?l=tomcat-userm=102278697817471w=2 Which suggested creating a temp

Re: Upgrade from 4.0.2 to 4.0.4

2002-08-21 Thread Shannon Scott
John, Thank you for your help. Where would I find the mod_jk connector for this release? I am using the version loaded by mod_jk2-2.0-1.0-1.4.0.2.i386.rpm. Do I need to upgrade mod_jk also? Shannon - Original Message - From: Turner, John [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

RE: Upgrade from 4.0.2 to 4.0.4

2002-08-21 Thread Turner, John
I don't think so. As far as I know, the mod_jk binary is suitable for tomcat 3 and 4, assuming that you are using apache 1.3.x. If you are using apache 2.0.39/40, you might have some grief. That said, building mod_jk from source is relatively easy for both apache 1.3 and 2.0. I have a HOWTO

RE: Tomcat Crash

2002-08-21 Thread Shapira, Yoav
Hi, I suppose you can't post code for confidentiality reasons, so I won't even ask for that. But I have a couple of questions that may help us understand the problem better. If you're reading from a CSV file, why do you need a DB connection? Couldn't you just open a FileReader, read a line at a

RE: Can't get tomcat 4 to work with mod_jk and Apache

2002-08-21 Thread Mitchell, Edmund
-Original Message- From: Scott Adamson [mailto:[EMAIL PROTECTED]] worker.ajp13.host=toecutter Host name=toecutter debug=0 appBase=webapps Can someone please help me (thanks to those who have already tried), can someone see a problem with my configuration ?

JIT compiler fails

2002-08-21 Thread Julie Jordan
Hi all, When I start Tomcat my JIT compiler fails, but I am able to view the Cocoon pages, but why the failure? I'm new to Tomcat/Cocoon, in my tomcat/lib/container I have: crimson.jar, xalan.jar, jasper.jar among other jar files. Am I missing something? Am running on Unix: Apache 1.3.9,

OUT OF MEMORY ERROR - PLEASE HELP

2002-08-21 Thread Patrick Codere
Hi everyone, Here is my situation. -NT, -Tomcat 4.0.3 - 2 webapps that have a link to each other - catalog with Thousand of jpegs (70kb each) After a while Tomcat crashed with java.lang.outofmemory problem. Before crash, get errors in my logs: java.net.SocketException: Software

RE: OUT OF MEMORY ERROR - PLEASE HELP

2002-08-21 Thread Shapira, Yoav
Howdy, You may wish to have Apache, not tomcat, serve static content such as images. But for your current setup, using only tomcat, you probably need to increase the amount of memory available to the JVM. You can do this via the -Xmx parameter to java. You set that parameter in your

RE: Tomcat Crash

2002-08-21 Thread Durham David Cntr 805CSS/SCBE
d -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 8:15 AM To: Tomcat Users List Subject: RE: Tomcat Crash Hi, I suppose you can't post code for confidentiality reasons, so I won't even ask for that. But I have a couple of

RE: OUT OF MEMORY ERROR - PLEASE HELP

2002-08-21 Thread Patrick Codere
Thanks Yoav, I just changed the CATALINA.BAT file this way: I just added these two lines on the top of the batch file. Would that be ok? CATALINA_OPTS = -Xms512m -Xmx512m JAVA_OPTS = -Xms512m -Xmx512m -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent:

RE: OUT OF MEMORY ERROR - PLEASE HELP

2002-08-21 Thread Shapira, Yoav
Hi, Only one of CATALINA_OPTS or JAVA_OPTS is needed, not both. See if it works for you with 512MB. It should be fine. For the long term, especially if you're going to have many concurrent users, you will want to investigate pairing Apache as the front end for static content with tomcat as the

RE: OUT OF MEMORY ERROR - PLEASE HELP

2002-08-21 Thread Patrick Codere
Thanks a lot. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: August 21, 2002 10:29 AM To: Tomcat Users List Subject: RE: OUT OF MEMORY ERROR - PLEASE HELP Hi, Only one of CATALINA_OPTS or JAVA_OPTS is needed, not both. See if it works for you with 512MB. It

RE: Tomcat Crash

2002-08-21 Thread Durham David Cntr 805CSS/SCBE
-Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Did you try to get a new connection each time and not go through the pool? That would degrade performance significantly (although you could just get one connection at the beginning and use it until you're

RE: Tomcat Crash

2002-08-21 Thread Shapira, Yoav
Hi, Maybe another approach will help. Can you write a little command-line test program to do the import? One that will read, parse the file, set up the ImportManager, and do your DB work, all outside of tomcat. Perhaps that will make the issue easier to pinpoint and then debug. It's certainly

Re: Can't get tomcat 4 to work with mod_jk and Apache

2002-08-21 Thread Milt Epstein
On Wed, 21 Aug 2002, Scott Adamson wrote: Yes I have read the other threads and all the documentation, and I didn't find anyone else with exactly the same problem. I don't think I have abused this list at all (if Tomcat was documented properly I doubt I would need to ask questions),

Not able to start Tomcat 4.0.4 with IBM supplied Java 1.3.1

2002-08-21 Thread John McMeeking
I am trying to run Tomcat 4.0.4 with an IBM JRE 1.3.1 on Windows 2000. I can start Tomcat with the Sun JRE (1.3.1_04) with out any problem. But using the IBM JRE I get the following exception running startup: java.util.zip.ZipException: Access is denied at

Re: tomcat4 + declarative security

2002-08-21 Thread jfc
Andreas Mohrig wrote: The answers are yes and yes. You can determine the user's logged-in-ness with a call to request.getRemoteUser(), which should return null if he is not and his name (login) otherwise. This should always be the case, regardless of the currently requested resource having a

com.orielly.servlet File Upload package

2002-08-21 Thread Raju Lokhande
Hello everybody, I loaded this package and the tester class in tomcat4. I used test html file supplied in the Jason Hunter's servlet book. I ran this in my local machine and it worked fine for one file. When I entered two file names separated by a space for example: c:\abc c:\def, the servlet

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Turner, John
I'm sure the source code would be able to tell you. Hint, hint. John Turner [EMAIL PROTECTED] -Original Message- From: Raju Lokhande [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 12:14 PM To: [EMAIL PROTECTED] Subject: com.orielly.servlet File Upload package Hello

RE: Not able to start Tomcat 4.0.4 with IBM supplied Java 1.3.1

2002-08-21 Thread Sullivan, Mark E
it seems to be a file permissions problem. Check the security settings between the two jdks to see what is different. I do not know a lot about how java handles file permissions, but i would start under the jdk/jre/lib/security directory. Also, i believe there is a .policy file somewhere in each

web.xml Validation Error on tomcat3.3.1

2002-08-21 Thread Godwin Orakwue
Hi, I tested my web apps with tomcat 3.2 but when I deploy my application with tomcat 3.3.1, I got the following error on startup: [“web.xml: Error org.xml.sax.SAXParseException: Element “web-app” does not allow “servlet” here] Any idea on what is causing this error message?

Re: com.orielly.servlet File Upload package

2002-08-21 Thread Chetan Sarva
How many input type=file fields did you put in your form? It's my understanding that you need one for each file that you want to upload. I'm not sure where filename seperators comes into this.. Regards, Chetan Sarva - Original Message - From: Raju Lokhande [EMAIL PROTECTED] To: [EMAIL

Re: retrieving HttpSession in Filter? ServletResponse.setContentLength()?

2002-08-21 Thread tek1
hi charlies and craig. thanks for your replies. At 08:21 02/08/19 -0700, you wrote: If your filter is calling response.setContentLength() -- or any other header setting method, such as trying to add a cookie -- after the response has been committed, then this attempt to set the header will

Re: com.orielly.servlet File Upload package

2002-08-21 Thread Raju Lokhande
You are right. I needed more fields on the html form to enter more than one file name. That means I have to pre-set the number of files in my html form. Is there a more user-friendly interface available which works with this package? I know there are commercially available software which do the

Re: retrieving HttpSession in Filter? ServletResponse.setContentLength()?

2002-08-21 Thread hoju
Quoting tek1 [EMAIL PROTECTED]: do you happen to have the link to the article? i followed sun's example filter using a CharResponseWrapper and my filter's not working... :| thanks again for helping. i appreciate it. I found it at: http://java.sun.com/products/servlet/Filters.html Not

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Turner, John
Sounds to me like you're making this out to be more difficult than it is. The standard flow is for a user to upload one file, and when the file upload is complete, you merely redirect back to the file upload page and ask if the user has another file to upload. Uploading multiple files all at

Re: com.orielly.servlet File Upload package

2002-08-21 Thread Chetan Sarva
The number of files doesn't necessarily have to be preset. I have seen forms where there is a more fields button which adds another 5 file upload fields with each click (of course the page is refreshed in most cases but it can also be done with javascript dhtml). All you have to do is name your

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Jim Urban
Well there's also your original idea to use a single entry field and let the user enter multiple file names by delimiting them with one of the characters not allowed in a file name. Yes I read your post that this doesn't work. But as you also noted, this is open source. If it doesn't quite do

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Mike Jackson
You know Jason's license isn't exactly free-ware. It's free only if you're not commerical. Or at least it was that way. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Raju Lokhande [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 10:10 AM To:

[OFF-TOPIC] RE: com.orielly.servlet File Upload package

2002-08-21 Thread Turner, John
I don't think that would work. The browsers would have to support it...the browser would have to understand that there were multiple filenames in the form field, and behave accordingly. Perhaps there might be a way to do it with Javascript, but I don't see how. John Turner [EMAIL PROTECTED]

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Turner, John
The code can be used for commercial purposes if every developer on the team owns a copy (or has a copy purchased for them) of his book. John -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 1:37 PM To: Tomcat Users List Subject: RE:

mod_jk on freebsd 4.6 with apache 2

2002-08-21 Thread [EMAIL PROTECTED]
I have been at this for what seems like weeks. Here is what I have so far, I downloaded the connectors from apache.org I installed autoconf, libtool and automake so that I can run the buildunix.sh without getting any errors. That works fine but when I run the configure here is the output, as

RE: com.orielly.servlet File Upload package

2002-08-21 Thread rsequeira
It would be also advisable to look at web mail applications and see how they program the File Upload bit. Hotmail is a good example. Infact it does something very similar to what John pointed out. RS

RE: mod_jk on freebsd 4.6 with apache 2

2002-08-21 Thread Sullivan, Mark E
try doing a ./configure --with-apxs=/usr/local/apache2/bin/apxs (substitute correct path) I think the error is because configure has no idea what platform it is trying to build for. Although apache and tomcat are part of the apache software foundation, they are not the same developers. And,

RE: mod_jk on freebsd 4.6 with apache 2

2002-08-21 Thread Turner, John
The connectors are all, as far as I know, separate projects. That is, the AJP team is different from the WARP team, which are both different from the tomcat team and the apache team. You're welcome to help out if you'd like to see things moved along. I would if I could. That said, and I

problems with Connections

2002-08-21 Thread Christian J. Dechery
I have this big problem handling Oracle Connecions... something goes wrong... I have tons of classes called DAOSomething... and a class called DAO which provides the Connection... the DAO*s requests the Connection from DAO and uses it, but there is no method to close the connection since it

RE: problems with Connections

2002-08-21 Thread Durham David Cntr 805CSS/SCBE
You need a connection pooler. The Oracle Drivers come with support for connection pooling. -Original Message- From: Christian J. Dechery [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 1:01 PM To: [EMAIL PROTECTED] Subject: problems with Connections I have this

Re: problems with Connections

2002-08-21 Thread Craig R. McClanahan
This is totally off topic for TOMCAT-USER, but ... The basic rules for successful use of a connection pool: * Always close the connection before the current request completes (which doesn't really close the underlying Connection; it just returns it to the pool. * Always close your

RE: problems with Connections

2002-08-21 Thread Christian J. Dechery
already tried that... didn't work... as a matter of fact, the pool had no effect on the problem, it stayed the same... .:| Christian J. Dechery .:| FINEP - Depto. de Sistemas .:| [EMAIL PROTECTED] .:| (21) 2555-0332 [EMAIL PROTECTED] 21/08/02 15:12 You need a connection pooler. The Oracle

Re: problems with Connections

2002-08-21 Thread Peter T. Abplanalp
On Wed, Aug 21, 2002 at 03:28:09PM -0300, Christian J. Dechery wrote: already tried that... didn't work... as a matter of fact, the pool had no effect on the problem, it stayed the same... re: using connection pooling did you get the connection from the pool or did you use the driver manager

File Filtering

2002-08-21 Thread Rui Fernandes
How can I configure a web app in order that some folders can be hidden from direct client access from browsers. Thank you, Rui.

Re: File Filtering

2002-08-21 Thread Justin Ruthenbeck
Rui -- The answer depends on why you want to do it. You mentioned that you don't want browsers to have access to the files... ever? Do you need this done dynamically? Who needs access? Are these static files? Resources used by your app at runtime? justin At 11:39 AM 8/21/2002, you

Re: problems with Connections

2002-08-21 Thread Christian J. Dechery
from the pool, of course... .:| Christian J. Dechery .:| FINEP - Depto. de Sistemas .:| [EMAIL PROTECTED] .:| (21) 2555-0332 [EMAIL PROTECTED] 21/08/02 15:36 On Wed, Aug 21, 2002 at 03:28:09PM -0300, Christian J. Dechery wrote: already tried that... didn't work... as a matter of fact, the

Re: problems with Connections

2002-08-21 Thread Christian J. Dechery
I don't think it is TOTALLY offtopic, since the problem occurs within Tomcat... and when I close tomcat all the connections and cursors are released... as I said in my email I close ALL ResultSets and Statements in finally blocks... as for closing the Connection... can I use the finalize()

Remote Start and Stop of tomcat4.0.4

2002-08-21 Thread Ashish Kulkarni
Hi, I am running tomcat4.0.4 with apache 2.0.39, i have this setup in office machine, i can access my office by remote login(from home). Can i start and stop tomcat and apache from home, i know i can use manager application to start, stop, reload a webapplication from home.. even if i m able to

Re: problems with Connections

2002-08-21 Thread Craig R. McClanahan
On Wed, 21 Aug 2002, Christian J. Dechery wrote: Date: Wed, 21 Aug 2002 16:13:23 -0300 From: Christian J. Dechery [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: problems with Connections I don't think it is TOTALLY offtopic, since the

STILL Need Help w. Tomcat Install

2002-08-21 Thread STEVE R BURRUS
This is Steve Burrus again, and I am damned sorry to have to post my plea for help/assistance again, but everyday when I first access my email there are literally 100's of postings from other members of the Tomcat newsgroup, and my original post--and any response--is VERY DIFFICULT to locate, so

Re: problems with Connections

2002-08-21 Thread Christian J. Dechery
That's exactly the problem... we dont't have any servlets (I wish we had, but I didn't design, I only code)... only JSPs and classes... I'll give u an example of how are things here... let's say we have a class called BusinessObject, and a class called DAOBusinessObject... so I'd have a

Re: STILL Need Help w. Tomcat Install

2002-08-21 Thread [EMAIL PROTECTED]
what os? On Wed, 2002-08-21 at 15:50, STEVE R BURRUS wrote: This is Steve Burrus again, and I am damned sorry to have to post my plea for help/assistance again, but everyday when I first access my email there are literally 100's of postings from other members of the Tomcat newsgroup, and my

TOMCAT +ANT

2002-08-21 Thread Alvaro Mota
Hi I need this file: catalina-ant.jar. Where find it? In documentation tomcat, * Download the binary distribution of Ant from http://jakarta.apache.org/ant http://jakarta.apache.org/ant/. You must use version *1.4* or later. * Install the Ant distribution in a convenient

list volume

2002-08-21 Thread Mona Wong-Barnum
there are literally 100's of postings from other members of the Tomcat newsgroup, This is a real problem for me as I spend hours ever day just scanning and deleting postins from this mailing list. I'm considering getting off this list. How do other people deal with the volume?

RE: STILL Need Help w. Tomcat Install

2002-08-21 Thread Sexton, George
This is nothing personal. I really would like to see you get the help you need. However, you didn't even tell anyone what operating system you are using. I would strongly recommend you read this FAQ about how to seek help on lists. http://www.tuxedo.org/~esr/faqs/smart-questions.html George

RE: problems with Connections

2002-08-21 Thread Durham David Cntr 805CSS/SCBE
Every method will have to get it's own connection and close it too. -Original Message- From: Christian J. Dechery [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 2:56 PM To: [EMAIL PROTECTED] Subject: Re: problems with Connections That's exactly the problem... we

Re: STILL Need Help w. Tomcat Install

2002-08-21 Thread Mona Wong-Barnum
Hi Steve: How exactly does one go about installing the Tomcat 4.0.* correctly??? What problem are you having? What platform? I installed pre-compiled tomcat 4.0.4 on my Solaris box and it worked fine. Cheers, Mona

RE: list volume

2002-08-21 Thread Turner, John
Filters, cat-like reflexes, and ruthless use of the 'Delete' key. John Turner [EMAIL PROTECTED] -Original Message- From: Mona Wong-Barnum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 4:02 PM To: [EMAIL PROTECTED] Subject: list volume there are literally 100's of

RE: STILL Need Help w. Tomcat Install

2002-08-21 Thread Turner, John
As far as I know, Steve is using Windows XP. John Turner [EMAIL PROTECTED] -Original Message- From: Sexton, George [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 4:03 PM To: Tomcat Users List Subject: RE: STILL Need Help w. Tomcat Install This is nothing personal. I

RE: list volume

2002-08-21 Thread Shapira, Yoav
Hi, I've found the outlook group by subject feature extremely useful for this. In fact this feature for this list alone has somewhat changed my opinion of outlook in general ;) When grouped by threads, you can easily delete tons of messages you're not interested in, without having to scan the

RE: TOMCAT +ANT

2002-08-21 Thread Shapira, Yoav
Hi, Download any of the tomcat 4.1.x distributions and catalina-jar is in there. You should be using tomcat 4.x with these ant tasks, as they're not designed for tomcat 3.x. Yoav Shapira Millennium ChemInformatics -Original Message- From: Alvaro Mota [mailto:[EMAIL PROTECTED]] Sent:

RE: list volume

2002-08-21 Thread Cox, Charlie
outlook allows filters to divide into separate folders. This is the only way! and some of those filters sends things directly to the trash. I do not use IIS, mod_jk, mac os, etc - therefore there is no reason for messages with those in the title to be in the inbox. I have about 30 filters and

Re: problems with Connections

2002-08-21 Thread Justin Ruthenbeck
Perhaps this is what you had in mind at the end of your last message, but if all of your DAO objects inherit from a common base class (as they should), why not add your connection opening logic to that class, add a closeConnection() method as well, and then code like this in each of your

Re: list volume

2002-08-21 Thread Tim Funk
Mozilla(1.0) can do a nice job of filtering too. It can also filter out noise, such as please, plz, urgent, multiple exclamation points, certain posters, and the word newbie. If you look at multiple lists - each list can be filtered into its own folder. Cox, Charlie wrote: outlook allows

Realm Security Implementation Question [OT]

2002-08-21 Thread Hookom, Jacob John
We are trying to figure out a way to handle realm-based security in a multi-application environement where users and their roles are specified in a DB. Users are stored in one table with password and there is a table for each application definining permissions for the user. I have been

RE: list volume

2002-08-21 Thread Januski, Ken
Well I've found that the lists I subscribe to with low volume generally aren't very interesting. The interesting ones have high volume. Knowing that you can then choose to use any of the filtering methods others have mentioned. Given the choice of active list like Tomcat-Users with too many

RE: Need help w. Tomcat Installation

2002-08-21 Thread PELOQUIN,JEFFREY (Non-HP-Boise,ex1)
I notice you have JAVA-HOME, the windows 4.0.4 I just downloaded uses JAVA_HOME. Is your email a typo? If all else fails you might simply put the following into the catalina.bat or setclasspath.bat files. set JAVA_HOME=you java home directory If you do it in the catalina.bat be sure to do

Re: STILL Need Help w. Tomcat Install

2002-08-21 Thread micael
If you will try again and document exactly what you do, I will be happy to chime in with where I think you ought to change things. You must be missing something fundamental, because the documentation on this is pretty good. Micael YOU WROTE How exactly does one go about installing the

Re: TOMCAT +ANT

2002-08-21 Thread Rick Fincher
The file is in CATALINA_HOME/server/lib/catalina-ant.jar, but only on Tomcat 4.1.X. Rick - Original Message - Hi I need this file: catalina-ant.jar. Where find it? In documentation tomcat, * Download the binary distribution of Ant from http://jakarta.apache.org/ant

Re: list volume

2002-08-21 Thread Will Hartung
From: Mona Wong-Barnum [EMAIL PROTECTED] Sent: Wednesday, August 21, 2002 1:02 PM there are literally 100's of postings from other members of the Tomcat newsgroup, This is a real problem for me as I spend hours ever day just scanning and deleting postins from this mailing list. I'm

Tomcat 5.0x Changes

2002-08-21 Thread micael
Is Tomcat 5.0 going to be a huge change? What changes are anticipated? I am trying to decide what list to jump into and learn and get started on helping out in the Open Source community a bit. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

RPM Upgrade from 4.0.4 - error: failed dependencies:

2002-08-21 Thread Eddie Bush
Hi, I was wondering if someone could tell me why the LE version has a dependency on jaxp/xml api/commons logging. This is all functionality found in J2SDK 1.4 (hence the LE version), right? My guess is that the packages contain better versions - is this correct? My SDK install was via RPM

Re: STILL Need Help w. Tomcat Install

2002-08-21 Thread Will Hartung
From: STEVE R BURRUS [EMAIL PROTECTED] Sent: Wednesday, August 21, 2002 12:50 PM This is Steve Burrus again, and I am damned sorry to have to post my plea for help/assistance again, but everyday when I first access my email there are literally 100's of postings from other members of the

Weird CPU profile during tomcat 3.3.1 performance test

2002-08-21 Thread jean . philippe . prefot
Hello, I am seeing some very wired CPU profile while running a small stress test with tomcat 3.3.1 and apache 2.0.39 on a 2 CPU Solaris box. While running the test, I don't get an even load on the two CPUs as shown in the mpstat log below. This profile looks like a single threaded process so I

  1   2   >