Per-context authentication database

2001-06-01 Thread Twylite
Hi, It is possible to have a per-context authentication database, especially one that does not have to be configured using server.xml ? This is the sort of scenario I am looking at: A WAR file is added to the webapps directory, and on restarting Tocmat will be deployed. It contains all of

xml parser

2001-06-01 Thread Zsolt Koppany
Hi, do tomcat and ant use an xml parser? If yes where can I find the documentation of the xml parser and some examples would be useful too. Zsolt -- Zsolt Koppany Intland GmbH www.intland.com Schulze-Delitzsch-Strasse 16 D-70565 Stuttgart Tel: +49-711-7221873 Fax: +49-711-7871017

jasper.log config

2001-06-01 Thread Carsten Elshoff
Hi, could someone possibly tell me where I can configure the scratch directory for jasper? The problem is that Tomcat keeps telling me in jasper.log that the directory specified is unusable but I didn't manage to find a place to change the directory / file in either of the config files. I didn't

AW: How to disable Backspace Button in the Keyboard

2001-06-01 Thread Alexander Hörnlein
: Whenever the user presses backspace key in the keyboard the : browser goes to : the previous page, which crashes our site when the user tries to save its : contents once again or he loses data which have been typed. : : I think its remedy is to disable backspace button by JavaScript, but how :

Re: How to disable Backspace Button in the Keyboard

2001-06-01 Thread Endre Stølsvik
On Thu, 31 May 2001, Mike Haberman wrote: | | Whenever the user presses backspace key in the keyboard the browser goes to | the previous page, which crashes our site when the user tries to save its | contents once again or he loses data which have been typed. | | I think its remedy is to

Greek encoding in Java Servlet Output

2001-06-01 Thread Kotsari Aspasia
Hi all! I am facing the following problem: I have made a Java servlet that reads HTML form data and sends it to an e-mail address. When the data is in Latin characters (ISO-8859-1, I assume) the output is ok. However, when the form data is in Greek it appears as ??? in the e-mail. I

Re: Per-context authentication database

2001-06-01 Thread Antony Bowesman
Hi, My comments relate to tomcat 3, not 4 but the same principles apply. Twylite wrote: Hi, It is possible to have a per-context authentication database, especially one that does not have to be configured using server.xml ? This is the sort of scenario I am looking at: A WAR file is

Re: Greek encoding in Java Servlet Output

2001-06-01 Thread Ian Goodchild
Hi Sassa We are experiencing similar problems. We are using an Oracle database in the UTF8 charset and were accessing thru JDBC thin with nlscharset classes. DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); connection =

IIS5 + Tomcat 3.2.1 problems

2001-06-01 Thread Baraboi, Tiberiu
Hi, I have a Win2K multiprocessor version, IIS5 and tomcat3.2.1. For unknown reason jakarta server stalled after about a week of working. Service is running but don't answer to anymore requests. I tried to play with parameters for the connectors but it seems I did not find the right combination.

Win2k, Tomcat 3.2.2 stalled

2001-06-01 Thread Baraboi, Tiberiu
Hi, I have a Win2K multiprocessor version, IIS5 and tomcat 3.2.2. For unknown reason jakarta server stalled after about a week of working. Service is running but don't answer to anymore requests. I tried to play with parameters for the connectors but it seems I did not find the right

RE: Greek encoding in Java Servlet Output

2001-06-01 Thread altuga
Hi , tomcat's default is 8859-1 so u have to convert it .. example for Turkish characters ; String endeks_name = request.getParameter("name"); String endeks_name_tr =new String(endeks_name.getBytes("ISO-8859-1"),"ISO-8859-9") ; Regards. Altug . -Original Message- From:

Re: AW: Why doesn't this work:

2001-06-01 Thread Terje Kristensen
Any idea on how to get rid of this error? Terje K. -- Original Message -- From: Ralph Einfeldt [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 31 May 2001 15:46:56 +0200 It looks like request.getParameterValues(paramName) returns a null value on

Win2k, IIS5 - Jakarta service stalled

2001-06-01 Thread Baraboi, Tiberiu
Hi, I have a Win2K multiprocessor version, IIS5 and tomcat 3.2.2. For unknown reason jakarta server stalled after about a week of working. Service is running but don't answer to anymore requests. I tried to play with parameters for the connectors but it seems I did not find the right

Where will Tomcat search for HTML-Files ?

2001-06-01 Thread Matthias Schiffer
Hi! I have embedded my Tomcat Ver. 4.0 Beta 5 into an existing application but now when I start my Tomcat and want to browse on my HTML-Files, Tomcat tells me that it can't find the files! I have set my App-Base values as parameters of the connector and the host... Now my question: Is there

Where will Tomcat search for HTML-Files ?

2001-06-01 Thread Matthias Schiffer
Hi! I have embedded my Tomcat Ver. 4.0 Beta 5 into an existing application but now when I start my Tomcat and want to browse on my HTML-Files, Tomcat tells me that it can't find the files! I have set my App-Base values as parameters of the connector and the host... Now my question: Is there

AW: AW: Why doesn't this work:

2001-06-01 Thread Ralph Einfeldt
String[] paramValues = request.getParameterValues(paramName); if (paramValues == null) { // Do what you want } else if (paramValues.length == 1) { // Do what you want } else { // Do what you want } -Ursprüngliche Nachricht- Von: Terje Kristensen [mailto:[EMAIL PROTECTED]]

only a test

2001-06-01 Thread Matthias Schiffer
please trash this message, i have several problems with my mail program

Compiling JSP's under Solaris

2001-06-01 Thread Martin Anstis
Hello, I've developed a fairly large JSP based application which runs nicely on windows NT, but due to spec of machines performance is slow. So moved application to Sun Sparc running Solaris 2.5. JSP compilation fails with noClassDef looking for sun.tools.javac.Main despite tools.jar being in the

ÁÐ: Greek encoding in Java Servlet Output

2001-06-01 Thread Kotsari Aspasia
Any ideas on how to include src.jar in the classpath??? I'm using Win98. Sassa.-

RE: Servlets and relative paths

2001-06-01 Thread Cox, Charlie
Title: RE: Servlets and relative paths What I had to do was put the xsl files in the root directory for my webapp where I could make the href the full url (http://localhost/webapp/sections.xsl) This was the only way I could get it to work correctly. Obviously this exposes your stylesheet to

Src.jar and Classpath

2001-06-01 Thread Kotsari Aspasia
Any ideas on how to include src.jar in the classpath??? I'm using Win98. S.-

RE: Src.jar and Classpath

2001-06-01 Thread Chris McNeilly
I modify my autoexec.bat. On Win98, you'll probably have to reboot to have it take effect. set classpath=.;C:\jdk1.3.0_02\lib\tools.jar ... Chris -Original Message- From: Kotsari Aspasia [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 8:51 AM To: '[EMAIL PROTECTED]'

Configuration and performance

2001-06-01 Thread Brian Kejser
Hi 1. Is there any advantage in using Apache Web Server as a front end to Tomcat when the bulk of the site being served is dynamic (i.e. servlets)? 2. Is there any advantage in using high end drives on a Tomcat Web Server (running Red Hat Linux on Intel hardware)? When is disk access required

RE: Re: How to debug a missing servlet error?

2001-06-01 Thread Chris McNeilly
I removed the servlet-mapping and still no luck. This is really odd. Is there any way to see where Tomcat is actually looking for the class? Chris -Original Message- From: Chris McNeilly [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 6:54 PM To: [EMAIL PROTECTED]

RE: Servlets and relative paths

2001-06-01 Thread Chris McNeilly
Title: RE: Servlets and relative paths That's eventually what I did. I now have two top xsl pages, one includes with fully qualified urls and the other uses the relative includes. One for the xsl designer and the other for testing/prod. It's not ideal, but isn't too much of a pain. Chris

RE: Compiling JSP's under Solaris

2001-06-01 Thread Williamson, James
Title: RE: Compiling JSP's under Solaris Martin, When you mention tools.jar is in the classpath, are we talking of you setting in within the shell script that launches tomcat or the enviornment (aka shell) which you invoke the script from. Looking at the shell script that starts up tomcat

Re: Per-context authentication database

2001-06-01 Thread Twylite
Hi, I sortof answered my own question, by writing my own Realm to do the trick. But I'm having some trouble :/ to override the default. In the realm implementation authenticate() I just do stuff like Context ctx = req.getContext(); String jaasConfigEntry =

RE: Servlets and relative paths

2001-06-01 Thread Steve Meyfroidt
Set the SystemID for xsl includes: this line is part of the setup for some SAX-driven XSL processing I've used in servlets: StreamSource source = new StreamSource(stream, getSystemID()); // set system id for xsl includes where getSystemID() returns the URI to use as a base location

What are 'notes' all about

2001-06-01 Thread Antony Bowesman
Hello, For Tomcat 3, is there any information on 'notes', what they are and what they do. There are various references to these notes in the source but I'd like to see concrete examples of their usage as the comments are fairly abstract and don't give much clue. Rgds Antony -- Antony

Debugging servlets in Tomcat using Visual Cafe Expert 4.0 Edition

2001-06-01 Thread Kumar, Amit
Hi, I followed the instructions provided at http://people.netscape.com/chanezon/tech/java/tomcat/debug_jsp_in_cafe.htm http://people.netscape.com/chanezon/tech/java/tomcat/debug_jsp_in_cafe.htm to debug servlets in Visual Cafe Expert 4.0. I am using tomcat 3.2.1 I get following error when I

Re: Per-context authentication database

2001-06-01 Thread Antony Bowesman
Hi, Twylite wrote: Context ctx = req.getContext(); String jaasConfigEntry = ctx.getInitParameter(jaasConfigKey); Interestingly I'm doing something almost exactly like that ... but no matter what page/context I'm accessing I appear to be getting the root context from

Re: Greek encoding in Java Servlet Output

2001-06-01 Thread Frank Morton
Is your out in the example below a ServletOutputStream or a PrintWriter? We are experiencing similar problems. We are using an Oracle database in the UTF8 charset and were accessing thru JDBC thin with nlscharset classes. DriverManager.registerDriver(new

Building Tomcat - Ambigous class

2001-06-01 Thread Wright, Steve
I'm trying to build tomcat and I'm getting an Ambiguous class error from the compiler. My system is as follows: * Redhat 7.0 * Linux Kernal 2.2.16-22 * tomcat 3.2.1 * ant 1.3 * jdk1.3.1 * jakarta-servletapi-3.2 Has anyone seen this? The full error dump

RE: Compiling JSP's under Solaris

2001-06-01 Thread Williamson, James
Title: RE: Compiling JSP's under Solaris Martin, That's pretty odd, have youmanually compiling your jsp files using jspc.sh? Having taken a brief look there is no difference between a manual and automatic (i.e. via Tomcat)compilation ofyour jsp files (i.e. it calls

RE: Servlets and relative paths

2001-06-01 Thread Chris McNeilly
That's an improvement, although not quite it. Now I have the full path portion hardcoded in the java and not the xsl. Ideally, I'd like it all to be a relative path, but if I don't fully qualify the systemID portion, the include still tries to prepend the tomcat/bin directory. This helps,

** JVM and Processes

2001-06-01 Thread myatt83
Hi, For a particular web server we are running with Tomcat 3.1, we are having an issue with the java servlets that are running. What appears to be happening is that each time a servlet is called from the web site, a new process is created to run the java program. When I view processes with ps

RE: Servlets and relative paths

2001-06-01 Thread Steve Meyfroidt
True. We ended up pulling a full path from config file and had the XSL pull from a known place on the filesystem. You're right... not ideal! Untidy deployment. You could (I imagine) make a URL resolver that will work from the classpath. Say it could resolve classpath://blah/foo. Would that help?

Bean Persistence

2001-06-01 Thread Sulman . Jeff
I am currently calling a servlet that retrieves data from a database and sets the instance variables for a number of beans. My question is how do I make the beans available to the JSP? I know in a JSP I can set the scope of a bean to the session so other JSPs and servlets can access it. How do

AW: Bean Persistence

2001-06-01 Thread Anja Beckmann
if you want the beans to have request scope you add them to the servletrequest with setAttribute, for the session you add it to the session object with setAttribute, if you want to add it to the application scope then you write ServletContext sc = getServletContext();

AW: Configuration and performance

2001-06-01 Thread Ralph Einfeldt
1. has been discussed several times in this list, here my last reply to this question: There are some things to add: - tomcat has to run as root to use a privileged port (like 80). Apache just opens the port as root and spawns children under a different user id that process the

Re: Tomcat tanks all by itself

2001-06-01 Thread Joe Howes
Nope..1.2.2 Chris Janicki wrote: Are you using Java 1.3? If so downgrade to 1.2.2.5 or later. Java 1.3 has intermittent synchronization problems. Original Message On 5/31/01, 5:06:00 PM, Joe Howes [EMAIL PROTECTED] wrote regarding Tomcat tanks all by itself: I've found a

RE: ** JVM and Processes

2001-06-01 Thread myatt83
Randy, Thanks for the advice. Could you be a little more specific, though, about how to use green threads instead of native threads and possibly differences between the two? Thanks. - Adam At 10:59 AM 6/1/2001 -0400, you wrote: Don't use ps - these are actually threads. ps is

RE: ** JVM and Processes

2001-06-01 Thread BARRAUD Valérie
Title: RE: ** JVM and Processes http://java.sun.com/products/jdk/1.1/packs/native-threads/README -Message d'origine- De: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Date: vendredi 1 juin 2001 17:46 À: [EMAIL PROTECTED] Objet: RE: ** JVM and Processes Randy, Thanks for the

Re: ** JVM and Processes

2001-06-01 Thread Michael Jennings
Title: RE: ** JVM and Processes My understanding of green vs. native threads is as follows: With native threads, an actual system thread is created when a Java thread is created. On linux a system thread takes the form of another process, but one that shares memory etc. with another process.

Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Mark Benzel
I have a webapp running under Tomcat 3.2.1 that needs to make JNI calls in order to access data and methods in legacy C++ code. A servlet is loaded on startup of the webapp that, as part if its init method, causes a data set specific to that webapp instance to be loaded into the C++ data

Re: Netscape and Tomcat

2001-06-01 Thread Aaron Nance
I know a lot of the time Netscape 4.76 on Windows tends to become a zombie process if you push it to much. When this happens the browser starts behaving erratically. Exit out of Netscape and check you task manager. If you see netscape.exe in the task list kill it then relaunch Netscape.

UNSUSCRIBE

2001-06-01 Thread rene-michel . thuny
UNSUSCRIBE

Re: Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Pae Choi
Just to give a thought for your situation, how would you think if we place a plain java bean(i.e., common wrapper class) that interact with the c++/dll module and provide the access from the Web components, i.e., servlet/jsp --- the jb's user --- to the java bean(jb). In that case, multiple jb's

Re: ** JVM and Processes

2001-06-01 Thread Jeff Kilbride
When Java first came to the Linux platform (via the Blackdown port), green-threads were the only option. Native threads took a little longer to implement, but are a much better option for the reasons listed in the previous message. So, I would recommend avoiding green-threads unless you have a

URLConection and readfully failsHi

2001-06-01 Thread kaab kaoutar
Hi i use the follwing: try { URL urlObject = new URL(url); URLConnection agent = urlObject.openConnection(); DataInputStream input = new DataInputStream(agent.getInputStream()); and the following code doesn't work /* byte[] b = new

Re: Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Bo Xu
[...] I have a webapp running under Tomcat 3.2.1 that needs to make JNI calls in order to access data and methods in legacy C++ code. A servlet is loaded on startup of the webapp that, as part if its init method, causes a data set specific to that webapp instance to be loaded into the C++

Re: ** JVM and Processes

2001-06-01 Thread myatt83
Jeff, Thanks a bunch. Your answer appears to be the best so far. I have implemented the PoolTCPConnector in the server xml file and it appears to be limiting the number of threads as it should. However, something that has been happening (even before switching to PoolTCPConnector) is that when

RE: Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Mark Benzel
Yes, it makes sense. However, I'm not sure if it solves my problem. In the scenario you describe, I would want to have 2 Java Beans, each accessing a separate instance of the C++/DLL. That's because the data contained in the C++/DLL used by webapps/aaa is different than the data contained in

J2ME and Tomcat

2001-06-01 Thread gunter . woytowitz
Hi, I want to use Apache,Tomcat Java Servlet engine, and Velocity with J2ME on Linux. I don't need the the JSP portion of Tomcat. Does anyone know if this is possible? Is there a way to configure Tomcat so that it looks for cvm instead of java for the JRE? Is there an easy way to remove the

Re: File uploads and Ajp13 with Tomcat 3.2.2

2001-06-01 Thread Paul Rubenis
Yes. I downed the binary installation for Tomcat 3.2.2 and the src for 3.2.2. I compiled the mod_jk and copied it into the libexec directory under Apache. Hunter Hillegas wrote: Did you compile and install the new mod_jk.so? Paul Rubenis [EMAIL PROTECTED]

Re: Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Pae Choi
I may be completely misunderstanding your case. However, the DLL itself is runnging as a single instance but has separate data segments for its each reference. Fro example, 2 users and 1 DLL will result a single instance of code segment and 2 different data segments for each user respectively.

Re: Per-context authentication database

2001-06-01 Thread Twylite
Hi, Thanks for the reply. Interestingly I'm doing something almost exactly like that ... but no matter what page/context I'm accessing I appear to be getting the root context from req.getContext() . Any suggestions? Have you got the different contexts defined in server.xml? Yes. Of

Re: ** JVM and Processes

2001-06-01 Thread Jeff Kilbride
Hi Adam, No, the garbage collector runs as a low priority background process and, on a lightly loaded server, may never get called because the server's not using enough resources to warrant it. I really wouldn't worry about it too much and I would definitely avoid killing threads individually,

Tomcat running as a service!

2001-06-01 Thread Shailendra T Kontham
Hello all, I just wanted to know if there is any way i can run the tomcat as a serivce just like apache on win200. so that it starts up as soon as i log on just like apache. Any help will be greately appreciated. Thanks, Shailendra -

3.2.2 Dies After Prolonged Use...

2001-06-01 Thread Hunter Hillegas
You may remember my posts about Tomcat dying on me... Well I upgraded to 3.2.2 and it is still happening. It only seems to happen after prolonged periods (lots of hits)... I increased the heap to 256MB with a max of 512MB. We're not using sessions on the site and the session timeout is set to 5

RE: Tomcat running as a service!

2001-06-01 Thread Ronald G. Louzon
In the Tomcat Documentation \doc directory, look at index.html. It has a link to The Jakarta NT Service. This describes what you are looking for... -Original Message- From: Shailendra T Kontham [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 3:03 PM To: [EMAIL PROTECTED]

RE: Tomcat running as a service!

2001-06-01 Thread Ratnakar Palle
Yes, you can do that... Download the jk_nt_service.exe from the tomcat site and execute jk_nt_service.exe -i servicename location of your wrapper.properties But, before that you may have to update your wrapper.properties like wrapper.tomcat_home=c:\jakarta-tomcat-3.2.1

RE: [ClassPath] JSP, JDBC, and mm.MySql

2001-06-01 Thread Michael Wentzel
i'm not too sure about Apache, i don't use that one for JSP. I'm running JRun for my JSP. I do use Apache for PHP though. It took me a long time setting up a mySQL connection using JSP before someone told me that there is no need for any CLASSPATH inclusions in the bat file. CLASSPATH

Internationalization

2001-06-01 Thread Wyn Easton
After a bunch of trial and error and some help from Jason Hunter's NEW Servlet Programming (2nd Edition) Book we finally got our JSPs and Servlets to support foreign languages. I'm going to put what we did in this note for anybody else that may need to do this and ask a related question at the

How to Unsubscribe -Please help

2001-06-01 Thread Venkatesh Sangam
_ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Tomcat/JSP Question

2001-06-01 Thread Mike Alba
Hi, Forgive me for the beginner question but I am trying to instantiate a class for a JSP. I am using: jsp:useBean id = "EX" class = "Example" scope = "session" / Thus I am under the assumption that my "Example" class is being instantiated and the constructor is called, is this

RE: How to Unsubscribe -Please help

2001-06-01 Thread Loflin, Charles
To remove your address from the list, send a message to: [EMAIL PROTECTED] -Original Message- From: Venkatesh Sangam [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 3:42 PM To: [EMAIL PROTECTED] Subject: How to Unsubscribe -Please help

relationship between tomcat and servletapi .zips?

2001-06-01 Thread Gilbert, David
What is the difference/relationship between the jakarta-tomcat-3.2.2 and the jakarta-servletapi-3.2.2 file groups/.zip files? Looks like tomcat uses the tomcat files, but does it also use the servletapi files or are they for another purpose? ___ David Gilbert Siebel

RE: Tomcat/JSP Question

2001-06-01 Thread Purcell, Scott
I think you may have the syntax for jsp:get_property jsp:set_property wrong. It is jsp:getProperty() and jsp:setProperty() Here is a textbook example from Fields and Kolbs book. Hope it helps #JSP % page import = com.taglib.wdjsp.components.CompoundIntrestBean % jsp:useBean id=calculator

Re: How to Unsubscribe -Please help

2001-06-01 Thread Chinni . Venkateswara
Just follow below... Hi! This is the ezmlm program. I'm managing the [EMAIL PROTECTED] mailing list. I'm working for my owner, who can be reached at [EMAIL PROTECTED] Welcome to [EMAIL PROTECTED]! Please save this message so that you know the address you are subscribed under, in case you

IO Exceptions

2001-06-01 Thread thomas . jodway
I am a pretty new user on Tomcat. We are running Tomcat 3.2.1 on Solaris 2.7. Just recently getting CPU utilization for this process consistently over 95%. Tomcat also is producing the following messages everytime our servlet runs (the servlet has not changed, and we catch exceptions):

Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Barry Hodges
OS: SunSolaris 2.6 Database: ORACLE 8.1.6 patchset 2 WebServer: Tomcat 3.2.1 I have Tomcat running as a standalone jsp container. If I startup the database instance before starting Tomcat, Tomcat hangs before the HttpConnectionHandler and Ajp12ConnectionHandler are started. After this I am

relationship between tomcat and servletapi .zips?

2001-06-01 Thread Gilbert, David
What is the difference/relationship between the jakarta-tomcat-3.2.2 and the jakarta-servletapi-3.2.2 file groups/.zip files? Looks like tomcat uses the tomcat files, but does it also use the servletapi files or are they for another purpose? ___ David Gilbert Siebel

RE: Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Craig O'Brien
Oracle 8i includes its own apache server and Jserv. Jserv has a port conflict with Tomcat's ajp12 (8007 I believe??). Stop the Oracle/Apache/Jserv web server and you will not have the problem. It starts by default when you start Oracle. You must reassign the port for one or the other if you

tomcat run problem: NoClassDefFoundError

2001-06-01 Thread Gilbert, David
When I run tomcat 3.2.2 (using the tomcat run command) I get a NoClassDefFoundError for the Tomcat class. I have this class in my webserver.jar file and this file is in my CLASSPATH. Any idea what else should be checked/fixed? ___ David Gilbert Siebel Development eoTek, LLC

RE: tomcat run problem: NoClassDefFoundError

2001-06-01 Thread Gilbert, David
PS. I am running on NT with SP6. TOMCAT_HOME and JAVA_HOME have both been set and I am running with VisualCafe using JDK 1.2.2. I downloaded and extracted the tomcat and servletapi files from the tomcat site. -Original Message- From: Gilbert, David [mailto:[EMAIL PROTECTED]] Sent:

RE: Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Barry Hodges
I have changed the ajp12 port for my tomcat to 9009, but I get the same problem. How can I stop the Oracle/Apache/Jserv web server but keep my database instance running? -Original Message- From: Craig O'Brien [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 4:13 PM To: [EMAIL

Re: ** JVM and Processes

2001-06-01 Thread myatt83
Using the Pool connector and the min_spare_threads,max_spare_threads, and max_threads, I set max_threads to 30 just to test it. Once I restart the server.xml file, if I wait a little while (after some people have visited the site and used some of the servlets) more than 30 threads appear (listed

Upgrading tomcat 3.2.1 to 3.2.2

2001-06-01 Thread Brandon Cruz
Has anyone gone though an upgrade of Tomcat 3.2.1 to 3.2.2? I am using 3.2.1 connected via mod_jk to Apache and using Apj12. If I want to perform this upgrade, is it going to take a very long time? I seem to remember having quite a bit of difficulty setting everything up in the first place,

RE: Upgrading tomcat 3.2.1 to 3.2.2

2001-06-01 Thread Skidmore, Walt
Title: RE: Upgrading tomcat 3.2.1 to 3.2.2 I just saved all my necessary conf files and other files (jsps, classes, libs, etc), and put it over the top... Then I put them back in... So, it wasn't very difficult for me. I'm running standalone, though. -Original Message- From: Brandon

Re: Upgrading tomcat 3.2.1 to 3.2.2

2001-06-01 Thread David Lennartsson
On Fri, 1 Jun 2001, Brandon Cruz wrote: Has anyone gone though an upgrade of Tomcat 3.2.1 to 3.2.2? I am using 3.2.1 connected via mod_jk to Apache and using Apj12. If I want to perform this upgrade, is it going to take a very long time? I seem to remember having quite a bit of difficulty

WAR file behavior and Tomcat 3.2.x

2001-06-01 Thread Darrell Porter
I've read the documentation. I've added the unpackWARfiles=FALSE to my server.xml Why is Tomcat still unpacking the WAR file into the WEBAPPS directory? Should it not simply be unpacking files to WORK as it needs them? I had heard that it was possible to encrypt or password-protect the WAR

RE: Upgrading tomcat 3.2.1 to 3.2.2

2001-06-01 Thread Roytman, Alex
Title: RE: Upgrading tomcat 3.2.1 to 3.2.2 Did it for RedHat Linux 7.1 and Win2k (Apache server 1.3.19) today took 15 min each. Did stress test for an hour on linux - no problems -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 4:49 PM To:

Info question for 4.0 under apache 1.3.20

2001-06-01 Thread Skyberg, David
Hi all, I'm new to the list, so can anyone point me to a descent info cache for working with Tomcat 4.0 under Apache 1.3.20? I've got everything built and mod_webapp loads. But Apache doesn't like the WebAppDeploy directive. I could use some examples. Thanks.

RE: Tomcat hangs when my ORACLE database instance is running

2001-06-01 Thread Craig O'Brien
Do a netstat -a from your shell to see where your conflict is. Do it with nothing running, do it again with only oracle running, stop oracle and do it again with tomcat running (confirm it is running) and find the conflict. I am not familiar with Oracle on Solaris. The Oracle command console for

Re: AW: servlet error..

2001-06-01 Thread Krishna Kishore Thotakura
Ralf, There is X server running on the machine running the WEb Server. I'm running Red Hat 7.0. The servlet runs fine when i am logged onto the WEb server m/c. I think that the Servlet is able to access the X-Server while i am logged in but it is unable to access it after i log out. Please

Re: Tomcat/JSP Question

2001-06-01 Thread Mike Alba
Actually I was wondering if you can do this Class Example { public Object myObject; public Example() { this.myObject = new myObject(); } // end constructor } then acess it via my JSP jsp:useBean id = EX class = Example scope = session / % int my_object = EX.myObject % It

Queue Implementation

2001-06-01 Thread Venkatesh Sangam
Hi, If the apache-Tomcat Server has more requests that it can service then the requests have to wait .. in this time if some some requests arrive ..will these requests be serviced first or the previously waiting requests .. is the Queue implementation last in first out(LIFO) please help

Queue Implementation

2001-06-01 Thread Venkatesh Sangam
Hi, If the apache-Tomcat Server has more requests that it can service then the requests have to wait .. in this time if some some requests arrive ..will these requests be serviced first or the previously waiting requests .. is the Queue implementation last in first out(LIFO) please help

Re: Tomcat/JSP Question

2001-06-01 Thread Francisco Areas Guimaraes
I could be wrong, but 'int' is a primitive type, I don´t know if it extends Object, have you tried 'Integer my_object = EX.myObject' ? Francisco - Original Message - From: Mike Alba [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 01, 2001 7:17 PM Subject: Re: Tomcat/JSP

Trying to extend JNDIRealm

2001-06-01 Thread Bragg, Casey
Hello : I'm trying to extend JNDIRealm in tomcat4 to implement my own digest method for SHA1. When I use org.apache.catalina.realm.JNDIRealm, Tomcat starts up fine. When I use my extension of JNDIRealm, I get the error listed below. To test, I made a duplicate of

Re: Tomcat/JSP Question

2001-06-01 Thread Mike Alba
Oops it is supposed to be % Object myObject = EX.myObject % - Original Message - From: Francisco Areas Guimaraes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 01, 2001 3:22 PM Subject: Re: Tomcat/JSP Question I could be wrong, but 'int' is a primitive type, I don´t know

Error Handling

2001-06-01 Thread Francisco Areas Guimaraes
Is there anyway to show a cutomized page when an internal error occurs, instead of the tomcat´s default? ps. I´m not talking about exception handling... thanks, Francisco [EMAIL PROTECTED]

UNSUSCRIBE

2001-06-01 Thread agent man
UNSUSCRIBE _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

RE: Tomcat/JSP Question

2001-06-01 Thread Skidmore, Walt
Title: RE: Tomcat/JSP Question Try putting in get/set methods for the object, then getting them that way, e.g.: -- public Object getMyObject() { return myObject; } public void setMyObject(Object _o) { myObject = _o; } % Object myObject = EX.getMyObject(); % --

¡¯¯Â°Ó·~¿ì¤½«Ç¥X¯²¡¯

2001-06-01 Thread v2m_2gkgfvlycqk
** ¯Â°Ó·~¿ì¤½«Ç¥X¯² ** ±MªùªA°È°Ó¥Î¿ì¤½«Ç¤§©Ó¯²¤H¡C ¥x¥_¦Uµ¥¯Å°Ó¥Î¿ì¤½«Ç®×¥ó¡A¾A¦X¦UºØ°Ó·~»Ý¨D¡I¡I

RE: Classloader, JNI and already loaded in another classloader

2001-06-01 Thread Mark Benzel
I'll give it try. Thanks. -Original Message- From: Bo Xu [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 10:56 AM To: [EMAIL PROTECTED] Subject: Re: Classloader, JNI and already loaded in another classloader [...] I have a webapp running under Tomcat 3.2.1 that needs to make

Re: Error Handling

2001-06-01 Thread Simon Chatfield
The errorPage jsp directive? %@ page errorPage="customError.jsp"%> -- Simon Chatfield VP, Software Development Inteflux Inc.

startup problem under win32

2001-06-01 Thread Jeff Gu
Hi guys, I am a newbie in this area, so please forgive my ignorance. I have a question concerning the startup of Tomcat. I use windows 2000 server version and wish to integrate Tomcat with Apache, which is already configured. I have JDK 1.3 SE installed at c:\jdk1.3. I have downloaded

How do you unsubscribe if you email address has changed?

2001-06-01 Thread Neil Edney
I know this has been posted before, but I can't remember how... please can you let me know. Thanks.

  1   2   >