RE: Processing BodyContent in doAfterTag() has no effect

2002-03-07 Thread Ryan Daigle
I believe you have to flush the writer out to the body content of the tag at the end tag event: doEndTag() throws JspException { bodyContent.writeOut(YourWriter); } That work? -Original Message- From: K Br [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 6:29 PM To: [EM

persistent session

2002-03-07 Thread Munish gupta
Hi list, i want to know which tomcat version support persistent session, what steps should i follow to acheive this, how database handles this session. regards munish

Tomcat jsp engine and weblogic jsp engine

2002-03-07 Thread Ashwani Kalra
Hi, 1.Is there any bench mark available to compare tomcat and weblogic jsp engine. I am asking this because our client are using weblogic application server. but they are not using the jsp engine that comes with it. I gave reasons to my colleagues that weblogic jsp engine is not as powerful and

AJP12 to AJP13

2002-03-07 Thread Lance Dyas
I have a web app that is configured on ajp12, Is there anything I need to change in the app itself to get it to run on ajp13... or is it just a question of changing tomcat configurations I was specifically wondering I could get it to work with SSL hence the interest in ajp13 A few deta

RE: problem trying to run C:\Program Files\Apache Tomcat 4.0\bin\startup

2002-03-07 Thread Leopoldo Garcia Bolivar
Hi Carlos,don´t have the time to read... but you missed the cd(change directory)instruction.So go to a DOS command prompt(C:\windows) and type as follows: cd C:\jakarta-tomcat-3.2.1\bin followed by startup do whatever you need to and shutdown (always from the bin directory). Hope this helps.

expire page after form submission

2002-03-07 Thread lloyd
I'm having some trouble with users pressing the browser back button after submitting a form, entering more data and attempting to resubmit. Is it possible to expire the form page immediately after it's submitted? I tried adding: ...to no avail. I'm running Tomcat

Re: applet to servlet problem

2002-03-07 Thread Toru Watanabe
tamir> java.io.InputStreamReader is = new tamir> java.io.InputStreamReader(con.getInputStream()); ^^^ Do each thread uses their own con? each thread must create URLConection newly inside run() if each thread need to connect to server in the same time. re

Re: what about server to client side using javascript

2002-03-07 Thread Steve
Well, since this is a tomcat list I would say that you can use tomcat/java/servlets/jsp to send dynamically generated html with dynamically generated embedded javascripts in them back to a browser. Once there these javascripts ( embedded in the dynamically generated html ) can operate on javas

Processing BodyContent in doAfterTag() has no effect

2002-03-07 Thread K Br
This is no JSP forum and I understand that. I would appreciate any pointers on this. Using Tomcat4.0.2 I have written a custom tag with body. The intention is to process the body and replace any periods with line breaks (in HTML) before writing the BodyContent to the enclosing JspWriter.

RE: Making Embedded tomcat work off tomcat config files

2002-03-07 Thread Sankaranarayanan Ganapathy
Craig, Thanx for writing! I want to provide our users the convienience of doing the necessary operations (start/stop and disbaling/enabling contexts dynamically)that they want to do on tomcat for our apps from our console. I am writing a wrapper on top of tomcat for the same. The thing I dont l

Re: Making Embedded tomcat work off tomcat config files

2002-03-07 Thread Craig R. McClanahan
On Thu, 7 Mar 2002, Sankaranarayanan Ganapathy wrote: > Date: Thu, 7 Mar 2002 12:23:15 -0800 > From: Sankaranarayanan Ganapathy <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Making Embedded tomcat work off tomcat config files > > Hi All

RE: Disable session serialization

2002-03-07 Thread Filip Hanik
there is one ugly way to do it, disable the path all together, this will throw an IO Exception when the system is shutdown, but the exception is caught and printed, nothing to worry about other than that, there is no way of doing it Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik

Load-on-startup

2002-03-07 Thread PELOQUIN,JEFFREY (Non-HP-Boise,ex1)
When tomcat is restarted, the servlets are initialized according to the value in their load-on-startup tags in web.xml. However, I have noticed that if I restart the context using the manager, the servlet are initialized according to their physical order in web.xml, thus ignoring the load-on-sta

RV: problem trying to run C:\Program Files\Apache Tomcat 4.0\bin\startup

2002-03-07 Thread Carlos A . Díaz
come again, a more explained version of my problem... I need to build a aplication using JSP's I use the following how-to-install everithing needs to run JSP's this is the link http://www.javahispano.com/articulos/como/apache-t omcat/windows.shtml I read the intructions and make everything. But

Disable session serialization

2002-03-07 Thread Ryan Daigle
How does one disable session serialization? I don't want this feature enabled at all, and I can't find anyway to turn it off. I know that the StandardManager handles this aspect, but it's not explicitly defined anywhere in the config files. Does this have to be done programmatically? If it hel

what about server to client side using javascript

2002-03-07 Thread Henry
I am wondering this can be done or not: A server send a whole bunch of information to client side. These are treated as objects on the client side, and client side initiates javascript objects for them. Are there any framework for that kind of job? thanx a lot! -- To unsubscribe:

RE: Moving to windows from linux ? bug ? -> DEMO

2002-03-07 Thread Larry Isaacs
Since case is supposed to be significant, this would appear to be a bug in the java compiler as the index_1.java file is generated correctly. However, expecting package "X" and package "x" to be distinguishable on a case insensitive OS may be expecting too much. Is there a reason the two "x" dir

Re: Moving to windows from linux ? bug ? -> DEMO

2002-03-07 Thread Romain Slootmaekers
a follow up for those that wanna see it for themselves. I attached a nano-web app that shows the exact problem. (extracting and installing, you have to do yourself, you'll also have to modify the bug.xml for your system) I tried this with Win98: -)tomcat 3.3.1-rc1 on Windows 98 with the ib

Making Embedded tomcat work off tomcat config files

2002-03-07 Thread Sankaranarayanan Ganapathy
Hi All, I am embedding tomcat in my application , but I dont want to deal with the configuration aspects of tomcat. I see that embedded tomcat requires that we set the configuration information programatically (like ports, connectors, contexts) etc. Is there a way to make an embedded tomcat read

RE: tuning tomcat!!

2002-03-07 Thread Randy Layman
For Tomcat on NT as a service, you can set the -Xms and -Xmx in the registry. Its HKEY_LOCAL_MACHINE\Service\CurrentControlSet\\Configuration. You can add new JVM Option Number X (and make sure to increment the JVM Option Count key) to contain the additional parameters. Randy

Re: tuning tomcat!!

2002-03-07 Thread tsmets
What borthers you with that ? Is the system too slow / sloppy ? I would also try to switch some flags like the green threads / native threads & see how it behaves. Have you try these while running as a normal APP ? I mean not an NT-service ? Another thing you could do is to simply have a dummy j

Tomcat 4.0.2 isn't reading WEB-INF/lib files .. please help!

2002-03-07 Thread Goins, John
I have jars in a \WEB-INF\lib directory on Windows XP. The log shows the jars included, but I get a java.lang.NoClassDefFoundError. When I added the jars to the common/lib directory it works fine. I have run out of ideas. The file that contains the class ValidatableObject resides in jaxb-rt-1.0-

Trouble starting Tomcat - omvs

2002-03-07 Thread Brown Bay
Tomcat 4.0.1, JDK 1.3.1, OMVS Unix Os390. When I start Tomcat I get this error. Exception during startup processing java.lang.reflect.InvocationTargetException: javax.xml.parsers.FactoryConfigurationError at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:157)

RE: Moving to windows from linux ? bug ?

2002-03-07 Thread Romain Slootmaekers
On Thu, 7 Mar 2002, Randy Layman wrote: > > You need to make sure that the directory names are the correct case. > The only way I know to do this is using a command prompt (Windows Explorer > assumes that the first character is upper case and all others are lower). > The only way to fix

RE: How to Unsubscribe?

2002-03-07 Thread Vogel, Kent
I'm guessing the apache server isn't accepting your message beacause your mail server is adding that InterScan_Disclaimer.txt attachment. Not sure how you get around that. > -Original Message- > From: Paul Brown [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002 12:56 PM > To: [

RE: Moving to windows from linux ? bug ?

2002-03-07 Thread Randy Layman
You need to make sure that the directory names are the correct case. The only way I know to do this is using a command prompt (Windows Explorer assumes that the first character is upper case and all others are lower). The only way to fix it is to remove the directory (delete, not rename)

Moving to windows from linux ? bug ?

2002-03-07 Thread Romain Slootmaekers
Yo, I'm moving from linux to windows (yeah, yeah I know :( ) On the linux platform, our web application runs PERFECTLY but on windows we have problems when the jsp pages are compiled. appearantly, tomcat doesn't like the following situation. file : /PROBLEM/abc.jsp <%@ page language

AW: How to Unsubscribe?

2002-03-07 Thread Paul Brown
This is what i always get back when trying to UNSUBSCRIBE -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 5:54 PM To: Paul Brown Subject: failure notice Hi. This is the qmail-send program at nagoya.betaversion.org. I'm afraid I wasn'

Re: BUG? Tomcat-4.0.3 eats PathInfo slashes, TDK leaves them alone

2002-03-07 Thread Remy Maucherat
> "Remy Maucherat" <[EMAIL PROTECTED]> writes: > > > BTW, you have to encode '/' and ':' in your URI, as you did in the second > > case. The first URL with unencoded special chars is invalid (ie, it may > > work, but it's not sure). > > But if I encode `/' (as %2F), then HttpProcessor.normalize()

Re: BUG? Tomcat-4.0.3 eats PathInfo slashes, TDK leaves them alone

2002-03-07 Thread Chris Shenton
"Remy Maucherat" <[EMAIL PROTECTED]> writes: > BTW, you have to encode '/' and ':' in your URI, as you did in the second > case. The first URL with unencoded special chars is invalid (ie, it may > work, but it's not sure). But if I encode `/' (as %2F), then HttpProcessor.normalize() will reject

Controlling processes

2002-03-07 Thread chad kellerman
Hi everyone, So I have tomcat running with mod_webApp and apache on a redhat 6.2 box. I have read that you can set the maximum number of processes that tomcat has by setting it in the server.xml file. Which I have. so why are there 86 child processes running under tomcat??? init-+-

Re: BUG? Tomcat-4.0.3 eats PathInfo slashes, TDK leaves them alone

2002-03-07 Thread Remy Maucherat
> [Followup to my own post; I did some digging and now understand why my > app works under TDK2 but not Tomcat; perhaps this in the archive will > help others who encounter this. I expect it will most often bite > people working on things like the Commons "httpclient", or proxies.] > > I was u

Re: BUG? Tomcat-4.0.3 eats PathInfo slashes, TDK leaves them alone

2002-03-07 Thread Chris Shenton
[Followup to my own post; I did some digging and now understand why my app works under TDK2 but not Tomcat; perhaps this in the archive will help others who encounter this. I expect it will most often bite people working on things like the Commons "httpclient", or proxies.] I was using PathIn

applet to servlet problem

2002-03-07 Thread tamir
Hello everybody, I'm quite sure it's not tomcat problem, however, I give it a shot, mainly because I know all the people here usually have great ideas... I'm using tomcat 3.3.1b. I've an applet that runs several threads. Each thread calls to the server using URLConnection. Everything works fine,

sending mail exception ...

2002-03-07 Thread Julien OIX
hi everyone, I'm trying to send mails thanks to javax.mail ... an exeption occurs ... -- StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: Unable to compile class for JSP /var/tomcat4/work/site.univ-nantes.fr/_/jsp/test_0005fmail$jsp

AW: How to Unsubscribe?

2002-03-07 Thread Ralph Einfeldt
It just a snippet from standard ezml mail which you (should) get by sending a mail to [EMAIL PROTECTED] In casse it does not work for you here the complete text: 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 [E

Re: How to Unsubscribe?

2002-03-07 Thread Wolfgang Stein
Try to send send a mail to [EMAIL PROTECTED] Gruss, Wolfgang -- To unsubscribe: For additional commands: Troubles with the list:

I can not get servlet work

2002-03-07 Thread Jianping Zhu
Hi, I have a post.html file which was put in the directory of webapps/ROOT. I have this code in post.html http://localhost:8080/post";> where should I put the class post? Jianping Zhu Department of Computer Science Univerity of Georgia Athens, GA 30602 Tel

RE: How to Unsubscribe?

2002-03-07 Thread Paul Brown
no, the mail address has not changed. can you expand on your instruction a little bit pelase. i can't follow it. -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 4:13 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: AW: How to Unsubsc

Setting the org.xml.sax.driver

2002-03-07 Thread Sulman . Jeff
How do I set the org.xml.sax.driver system property to create an createXMLReader? I know it can be done on the compiler command line. However, I would like to do it in my program. I have tried the command System.setProperty ("org.xml.sax.driver","org.xml.sax.helpers.ParserFactory"); but it does

AW: How to Unsubscribe?

2002-03-07 Thread Ralph Einfeldt
Is your current mail adress different from the one you used to subscribe ? Did you also try the following ? To stop subscription for this address, mail: <[EMAIL PROTECTED]> s/john/tom s/host.domain/58k.com > -Ursprüngliche Nachricht- > Von: Thomas Riemer [mailto:[EMAIL PROTECTED]

Re: How to Unsubscribe?

2002-03-07 Thread Thomas Riemer
Guys - someone needs to check this - because I must have done this about 10 times in the past 3 months - and it simply doesn't do the job. -Tom Riemer Jarecsni János wrote: >Hi > >send an empty mail to the following address: >[EMAIL PROTECTED], and follow the instructions >mailed to you in rep

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Scott Shorter
That did the trick! I had an older version of tools.jar in $CATALINA_HOME/common/lib. I moved the new one from $JAVA_HOME/jre/lib to there, and the problem went away. Regards, Scott > -Original Message- > From: Attila Szegedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002

RE: How to Unsubscribe?

2002-03-07 Thread Jarecsni János
Hi send an empty mail to the following address: [EMAIL PROTECTED], and follow the instructions mailed to you in reply. Cheers J |-Original Message- |From: Paul Brown [mailto:[EMAIL PROTECTED]] |Sent: Thursday, March 07, 2002 3:49 PM |To: Tomcat Users List |Subject: How to Unsubscribe?

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Scott Shorter
> I believe that your problem might stem from a problem > in the catalina.bat file. I actually kick off Tomcat from an ant target: > First, from a command prompt, type > java -fullversion > and I believe that you will see a response indicating JVM 1.3 > or b

How to Unsubscribe?

2002-03-07 Thread Paul Brown
I keep trying to unsubscribe without luck ... Anyone know a reliable way of doing it? thanks Paul This message contains confidential information and is intended only for the named individual and may not be disseminated without prior permission. If you are not the named addressee, you should

Re: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Attila Szegedi
To be more precise, I was thinking about the inclusion of the tools.jar in Tomcat 4 - AFAIK Sun has loosened the licensing for redistribution of tools.jar for the very reason of its inclusion in Tomcat 4 so that it can fully run in a presence of a JRE instead of JDK (as was the case previously). A

Re: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread David Smith
I saw this issue with Cocoon 2. The cocoon.war file includes javac.jar in WEB-INF/lib which is not compatible with jdk 1.4. Something very similar might be happening here. Check the directories for a tools equivalent .jar file built for use with jdk1.3. Hope this helps... --David On Thurs

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Jarecsni János
what do you mean by "1.3 javac"? AFAIK sun.tools.javac.Main is called. which is in the tools.jar loaded from the bootstrap classpath. cheers, J |-Original Message- |From: Attila Szegedi [mailto:[EMAIL PROTECTED]] |Sent: Thursday, March 07, 2002 4:01 PM |To: Tomcat Users List |Subject: Re

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Martin van den Bemt
it doesn't indeed, because if you that you would be breaking license rules. Mvgr, Martin > -Original Message- > From: Attila Szegedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002 16:01 > To: Tomcat Users List > Subject: Re: Upgrade to JDK1.4 --> unable to compile JSPs > >

Re: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Attila Szegedi
Correct me if I'm wrong, but doesn't Tomcat 4 distribution come with bundled javac? I'd expect JSP compiler uses the bundled (presumably 1.3) javac and no tweaking of your classpath will help... Just my 2c Attila. -- Attila Szegedi home: http://www.szegedi.org > |-Original Message- > |

AW: Does anyone know of a Tomcat 3.2.4 Memory Leak Problem?

2002-03-07 Thread Ralph Einfeldt
The classes that implement the servlet are not unloaded. AFAIK currently java has no means to unload single classes. You can only destroy the classloader. This way you loose all classes loaded by the classloader. (that's what happens if you change a JSP and have automatic reloading enabled) > -

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Jarecsni János
Hi, I had something similar (Win2K, Cygwin :). I had to do some minor modifications in the startup srcipt to amend the situation: 1) as it seems JAVA_HOME is read by the executing JVM to resolve the place of the bootstrap classes set JAVA_HOME=c:\jdk1.4.0 2) calling explicitly the appropriate j

RE: Does anyone know of a Tomcat 3.2.4 Memory Leak Problem?

2002-03-07 Thread Randy Layman
You are correct - once a servlet is loaded into Tomcat it is never unloaded (it could be according to the spec, but Tomcat doesn't implement this). Remember - there is only one instance of the JSP/Servlet for all the requests, so this isn't the cause of leaking memory, although class var

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Randy Layman
The ONLY way you get this message is to use a JVM 1.4 JAR file with a previous version. If you have only one JVM installed it is NOT 1.4. Randy > -Original Message- > From: Scott Shorter [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002 9:36 AM > To: 'Tomcat U

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Randy Layman
I believe that your problem might stem from a problem in the catalina.bat file. First, from a command prompt, type java -fullversion and I believe that you will see a response indicating JVM 1.3 or before (not 1.4). Edit your path statement so that the 1.4 JDK is before the othe

RE: Does anyone know of a Tomcat 3.2.4 Memory Leak Problem?

2002-03-07 Thread Brandon Cruz
Thanks Randy, I'll look into it more. Restarting Tomcat does seem to help, but it slowly starts to grow again. I'm thinking that rules out JavaC. I read that servlets and jsp's get loaded into memory when they are accessed and never get released. Is there any truth to this? I have seen a lot

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Scott Shorter
Randy and Ralph, Thanks for you quick replies. I've quadruple checked - I deleted all JDKs and JVMs on my machine except for the one I just installed. The problem remains, unmodified. Is it possible that some of my jar files need updating? Thanks, Scott > -Original Message- > From: R

Re: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread D. Jay Newman
If you are using Windows, I would suggest that you totally delete the Java that came with Windows using the "Add/Remove Programs" from the Control Panel. I've had similar problems before with mixed Java setups. I hope this helps. > Okay, I look again and find information, but it doesn't seem to

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Scott Shorter
Okay, I look again and find information, but it doesn't seem to be enough to fix the problem. Just to follow up: I did set my JAVA_HOME to the new location. I did delete all of my tomcat work directories. Those were the only items I saw recommended as solutions in the archives, but they d

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Randy Layman
Double (and triple check) that you are really running Tomcat with JDK 1.4. This error message is only generated by older JVMs when presented with newer JAR files (i.e. a 1.3 JVM trying to read a 1.4 JAR file). Randy > -Original Message- > From: Scott Shorter [mailto:[EM

RE: client side object to server side

2002-03-07 Thread Jim Urban
Mark, We are doing the exact same thing. Our plan was to send a single XML document embedded in a hidden string variable to the sever. You plan sounds like it may make what we are trying to do easier. I would like a copy of both the client and server code. Thanks, Jim > -Original Message

AW: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Ralph Einfeldt
Tomcat is still using parts of your previous java installation to compile. The rt.jar is the new one but javac is the old. Check your PATH, the environment and the registry keys. (Can't be more precise, I don't have java running on windows) > -Ursprüngliche Nachricht- > Von: Scott Short

Re: BASIC Authentication Question

2002-03-07 Thread Christopher K . St . John
Mark Shaw wrote: > > In subsequent requests I pass back the sessionID (in a cookie > labeled "jsessionid"...) instead of the BASIC authentication > You need to include the authentication information with every request for a protected resource, or you're going to get another challenge. rfc2617

RE: client side object to server side

2002-03-07 Thread Wagoner, Mark
I have been developing an app that needs to send large amounts (~kilobytes) of structured data between the server and the client. I have been working on a framework to facilitate this by using JavaScript's object notation. Essentially, I have a JavaScript function that converts a JavaScript obje

Re: Tomcat vs CPU

2002-03-07 Thread Erwin Ambrosch
Do you starting non daemon threads in your web applications (Servlets)? As long as non daemon Java threads are running you will have Java processes in your memory. Erwin Am Donnerstag, 7. M(B?(Brz 2002 07:05 schrieben Sie: > Does anybody clue me in thsi situation? > Plus,in below situation ,wh

Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Scott Shorter
Hi all, I've browsed the archives and found people asking this question, but couldn't find any answers to it, so here goes... Platform: Win2K + Cygwin Tomcat: 4.0.1 I upgraded to JDK1.4 in order to take advantage of the java.util.regex package (yay, no reason to use perl again!). Everything wa

Re: Apache & Tomcat as Service on Win2k

2002-03-07 Thread Andrzej Jan Taramina
> I am having severe difficulties getting Apache (1.3) + Tomcat 4.0.3 to run > as services together on either Win2k or WinXP. > How can I ensure Apache starts running later? You will have to go into the Win Registry and find the key HKLM/System/CurrentControlSet/Services. Then locate the Apach

log4j in different context

2002-03-07 Thread Eduardo Godoy
Hi, I´m using tomcat 4.0.2 on Win2K and I´d like to use log4j as logging method ... but I need to define diferent properties of each context, how can I do it?, cause If I put a log4j.properties file on each WEB-INF\classes\ folder of each context .. the log4j use "the last one" ... maybe I´

RE: why do i get this error?

2002-03-07 Thread Randy Layman
For all classes without a package you need to import them explicitly. (i.e. <%@ page import="Course" %> Randy > -Original Message- > From: Peter Choe [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002 8:08 AM > To: [EMAIL PROTECTED] > Subject: why do i get this

why do i get this error?

2002-03-07 Thread Peter Choe
what does this error mean? i install tomcat 4.0.3 from binaries on to my solaris 8 for intel and tried to migrate some jsps i had on tomcat 3 to the new one. i have my jar files in $TOMCAT_HOME/lib. i thought that tomcat was suppose to read the jar files from that directory? i am wrong to assu

Re: BASIC Authentication Question

2002-03-07 Thread Paul Chen
Have you turn on the SingleSignOn valve in server.xml? -Paul Mark Shaw wrote: >I'm hoping someone can shed some light on a particular behavior I'm >experiencing with BASIC authentication and session cookies: > >I've set up my servlet to use BASIC authentication and I'm my own very >simple real

RE: Does anyone know of a Tomcat 3.2.4 Memory Leak Problem?

2002-03-07 Thread Randy Layman
80MB is definitely possible (our application generally runs at about 130MB with peaks into the 300MB range for users, some nightly processing can push that to more than 500MB), it really depends on your application. Places where you could be loosing memory: 1. JavaC. Ap

Re: Tomcat Not Picking Up Changes

2002-03-07 Thread Steve
Well its nice to know it is not just happening to us. We did delete our tomact cache, I believe that is the the ./tomcat/work/ directory and it didn't help. Steve Ofur-Bjarni wrote: > Yes this happened to me as well, allthough it was a tag class I changed. > You can force tomcat to recompil

Re: Autentication with digest password(Urgent!)

2002-03-07 Thread Christian Froehler
In the tomcat 3.3 documentation, there is a JDBCRealm-howto that also describes how to use digested passwords. I don't know if this is still working for tomcat4? http://jakarta.apache.org/tomcat/tomcat-3.3-doc/JDBCRealm-howto.html Christian Galbayar wrote: >I setup Tomcat 4.0.3 on Win2000 wi

RE: HOW TO start tomcat on linux boot

2002-03-07 Thread Gustavo Souza
Slackware Linux 8.0 thanks At 19:51 06/03/2002 -0500, you wrote: >What distro of Linux are you using? > >Mike > >-Original Message- >From: Brett Porter [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, March 06, 2002 5:57 PM >To: 'Tomcat Users List' >Subject: RE: HOW TO start tomcat on linux

Apache & Tomcat as Service on Win2k

2002-03-07 Thread Chris Pheby
I am having severe difficulties getting Apache (1.3) + Tomcat 4.0.3 to run as services together on either Win2k or WinXP. In short: javaservice.exe fails with unusual error after initially working. jk_nt_service works. however, at boot time have to manually stop and restart apache to make the i

Re: Autentication with digest password(Urgent!)

2002-03-07 Thread Joaquín Sánchez Jiménez
Hi: Use java.security API. Supposing "my_password" is a string: MessageDigest disgest = MessageDigest.getInstance("MD5"); byte[] pwd_digest = digest.digest(my_password.getBytes()); You have "my_password" digested in "pwd_digest". Bye. Joaquín. - Original Message - From: "Galbayar" <

AJP bad read - 113 with tomcat 4.0.1 and apache 1.3.

2002-03-07 Thread Thanh Duong
Hi all, I got the error message "AJP bad read - 113" from catalina.out and mod_jk.out. I looked in the tomcat Users group and found a solution posted by GOMEZ Henri. see http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg36582.html I copied the ajp.jar, tomcat-util.jar getting from htt

Autentication with digest password(Urgent!)

2002-03-07 Thread Galbayar
I setup Tomcat 4.0.3 on Win2000 with JDBCRealm and a mysql-database. Using plain passwords, everything works fine. But I would like digest my password in the database. how to make this? can u give me step by step tutorial? Thank in advance

RE: W2K/IIS - Tomcat Authenication

2002-03-07 Thread Ignacio J. Ortega
> De: Loo, Jason [mailto:[EMAIL PROTECTED]] > Enviado el: jueves 7 de marzo de 2002 3:50 > A VERY detailed explanation of the problem can be found here. > http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg > 43337.html This bug

Re: Newbie Question Tomcat IIS

2002-03-07 Thread Alejandro Alcalde
At least in our case, we want Tomcat to show JSP pages, for IIS cannot serve this kind of dinamic content. So, IIS takes care of normal html files (static ones), and Tomcat of the dinamic JSP pages. (although we haven't been able yet to make it work properly) --

Newbie Question Tomcat IIS

2002-03-07 Thread Rudi Doku
Hello, I'm been using tomcat at home for the last couple of months. While searching through the newsgroups i've noticed that some people run Tomcat and IIS together. Can anyone tell me why people do this and what they are aiming to achieve? Kind Regards, Rudi _

global filters

2002-03-07 Thread Taavi Tiirik
hello, I want to stop (not undeploy) my web application using manager app and need to give reasonable error page explaining the situation whenever this web application is used. Now I am wondering if is it possible to write a global filter that listens to all requests not only request for a certa