Re[2]: WEB-INF/classes

2002-02-08 Thread Serge A. Redchuk
Hello Anla, at setting up a new context for Tomcat, I must have forgotten something, because tomcat doesn't find my classes in WEB-INF/classes. The following fault appears: login_0005ftest$jsp.java:71: Class org.apache.jsp.DBSConnect not found.

Re[2]: Init method of servlet called twice?

2002-02-08 Thread Serge A. Redchuk
Hello Anton, Can anybody tell me why the init method can be called twice in a servlet. I am loading the servlet on startup and init is first called there. The first request to the servlet then calls the same init method again? Please help. I cannot init twice. AB This topic was

RE: Re[2]: Init method of servlet called twice?

2002-02-08 Thread Anton Brazhnyk
Hi Serge, -Original Message- From: Serge A. Redchuk [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 10:30 AM To: [EMAIL PROTECTED] Subject: Re[2]: Init method of servlet called twice? AB This topic was discussed about a week ago, and Craig gave perfect and clear

Default Servlet

2002-02-08 Thread Odo
Dear gurus. I am running Apache+Tomcat4. Please help me on the following: 1.How should I configure tomcat and apache to run on the same port 80. 2.If both in port 80, How should I configure apache that every request like http://test.myserver.com will be redirected to only one servlet

Problem with cookies

2002-02-08 Thread Gaurav Arya
Hi, Is there a way in Tomcat 401 to set cookies off on the server side. I tried setting the cookies off by specifying the cookies attribute in server.xml so that my server.xml looks like: Context path=/cnams docBase=cnams debug=0 privileged=true cookies =false/ But this doesn't seem to

MIGRATION TO JAKARTA-TOMCAT 4.01

2002-02-08 Thread Catalin
Hello! I've an webapp with jsp, servlets and beans (on an win2k OS) that is functioning on a jakarta-tomcat-3.3m4 (in webapps directory/myapp and my classes in myapp/web-inf/classes) and I want to migrate on a JAKARTA-TOMCAT 4.01., but the same

Tomcat IIS Servlets

2002-02-08 Thread Martin Jussel
Hi, Tomcat is running fine with IIS. I can surf .jsp pages and JDBC is also working. But I've troubles with servlets. Placing a servlet in WEB-INF/classes seems not to work. Is there any basic (uriworkermap.properties?) or webapp specific (apps*.xml) configuration needed do get it work? my

AW: Newbie problem with reading init params

2002-02-08 Thread Dominik Jednoralski
Sorry Chinni, but that didnt't work. Why isn't there a connection between the server and the compiler? Dominik -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 7. Februar 2002 20:15 An: Tomcat Users List Betreff: Re: Newbie problem with

RE: Default Servlet

2002-02-08 Thread Loc Lefvre
Hello Odo, 1. First of all, you can't make apache AND tomcat listen on the same port at the same time. 2. You can use a rewrite rule. Look at this url: http://httpd.apache.org/docs/mod/mod_rewrite.html Cheers, Loïc Lefèvre -Message d'origine- De : Odo [mailto:[EMAIL PROTECTED]]

Is it possible to execute a reloadable...

2002-02-08 Thread Jean-Luc BEAUDET
Hi everybody, I'm using SOLARIS 8, apache 1.3.22, tomcat 4.0.1 Tomcat is configured to communicate with Apache via the WARP Connector. As it is set for devlopement stuff, i want all the changes made in the WEB_INF/lib or classes under CATALINA_BASE/webapps to be automatically reloaded. Below

RE: Default Servlet

2002-02-08 Thread Anton Brazhnyk
Hi, -Original Message- From: Odo [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 11:33 AM To: Tomcat Users List Subject: Default Servlet Dear gurus. I am running Apache+Tomcat4. Please help me on the following: 1.How should I configure tomcat and apache to run

How do I define Tomcats CLASSPATH - tools.jar not found

2002-02-08 Thread Antony Stace
Hi I have just installed the IBM JVM 1.3 and want to use it with Tomcat 4. I started Tomcat and got an error which after some investigation said I needed tools.jar in my CLASSPATH. I am using linux and have a tools.jar at /usr/java/jdk1.3.1_02/lib/tools.jar

Have people used IBM JDK 1.3 with Tomcat4 with UTF8

2002-02-08 Thread Antony Stace
Hi I have just installed IBMS JDK and am using it to run Tomcat 4. I am getting a few exceptions relating to the character encoding. Can someone please tell me if it is possible to use the IBM JDK 1.3 with UTF-8 for Tomcat 4 -- Cheers Tony$B!#(B

Re: Default Servlet

2002-02-08 Thread Odo
Yes Anton,in my case as you said it's enough to have only Tomcat4. But if I'll configure Tomcat4 running alone,listening port 80, what should i do to redirect all my requests directly (not using in middle any html or jsp) to only one servlet Myservlet? Please give me some examples or links with

Re: How do I define Tomcats CLASSPATH - tools.jar not found

2002-02-08 Thread Anja Falkner
Hi Tony, Tomcat uses another CLASSPATH than you system. You can change it in TOMCAT_HOME/bin/catalina.bat. You will have to look for the right position. But note: To change Tomcat-CLASSPATH is unsupported by jakarta. Anja PS: I have added the JDBC-Driver to Tomcat-CLASSPATH and is runs without

RE: Default Servlet

2002-02-08 Thread Anton Brazhnyk
-Original Message- From: Odo [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:27 PM To: Tomcat Users List Subject: Re: Default Servlet Yes Anton,in my case as you said it's enough to have only Tomcat4. But if I'll configure Tomcat4 running alone,listening port 80,

TOMCAT 4.0 on port 80

2002-02-08 Thread Kevin Passey
Hi all, We have temporarily given up on trying to get Tomcat working with apache as we seemed to be getting nowhere. What we wanted to do was to only serve JSP's anyway, but thought it would be a good idea to run it through apache - commercially we don't have the time to persue this and our

RE: TOMCAT 4.0 on port 80

2002-02-08 Thread Martin van den Bemt
You have to be root to startup tomcat under port 80. Mvgr, martin -Original Message- From: Kevin Passey [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:23 To: Tomcat Users List Subject: TOMCAT 4.0 on port 80 Hi all, We have temporarily given up on trying to

setMaxAge getMaxAge cookie problem

2002-02-08 Thread Hammonds Nicholas
Hello there, I don't know if this is off topic for this list but I will ask anyway. I written two java servlets which I am running on tomcat 4.0. One servlet creates cookies, the other displays details about them. One thing I have done is to use the setMaxAge method on a cookie object. But

Re: Configuration Issue of Tomcat4.0.1 and Apache1.3.22

2002-02-08 Thread Pascal Forget
1. What's the relationship of Apache, Apache Jserv and Tomcat? Apache 1.3 is a standards compliant, fast and mature web server which excels at delivering static content such as static HTML pages and images. The Tomcat web server is great for serving Java Server Pages and servlets, but it is

java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: javax/net/ServerSocketFactory

2002-02-08 Thread Lawrence D. DeVooght
Hello, Does anyone have an explaination or remedy for this error? I get this error when I try to run Tomcat with the SSL invoked, Tomcat/4.0.2-b1 -- Windows 2000 Pro. I followed the instructions given in the documentation to the letter, but I still get this error.

Re: TOMCAT 4.0 on port 80

2002-02-08 Thread Pascal Forget
Kevin Passey wrote: Hi all, We have temporarily given up on trying to get Tomcat working with apache as we seemed to be getting nowhere. What we wanted to do was to only serve JSP's anyway, but thought it would be a good idea to run it through apache - commercially we don't have the time to

RE: TOMCAT 4.0 on port 80

2002-02-08 Thread Kevin Passey
Pascal - We have shut down apache using rcapache stop and have modified the rc.config file so that it does not start on bootup. Thanks anyway - what we are trying is to change the server.xml file back to 80 and to restart tomcat under root. Do you think that was our problem - not starting

Adding apps to Tomcat

2002-02-08 Thread Javier Alonso
Hello everyone. Actually i have tomcat and Apache successfully installed and running (in a w32 enviroment). I have one app serving servlets (call it, appA). I want to create another app (under webapps also), call it appB. In the httpd.conf i added something like this (another alias) Alias /appB

RE: Tomcat and JSP

2002-02-08 Thread Randy Layman
Are you perhaps storing some information in some page variable? When you recompile the JSP the previous state is lost and it would appear from the error message that perhaps some variable is now null that wasn't previously null. Randy -Original Message- From: James

RE: TomCat Issues

2002-02-08 Thread Randy Layman
We were close - IIS 4, Tomcat 3 and SQL Server 7 using INetSoftware.de's drivers. No problems and no stability issues. It was a fairly small user base (20-30), but the users were very active (6-8 hours a day 5 days a week). We shared the hardware with another system and never received

Please Help....Re: Listeners in the WARP Connector?

2002-02-08 Thread Mark R. Diggory
Mark R. Diggory wrote: I assume I would need to use a WebAppDeploy descriptor to map the users directories to Tomcat, how would I do that for generic users directories (~/public_html)? WebAppConnection warpConnection warp localhost:8008 WebAppDeploy examples warpConnection

RE: java.lang.StackOverflowError

2002-02-08 Thread Randy Layman
StackOverflowError Java Doc states: Thrown when a stack overflow occurs because an application recurses too deeply So I would suggest that you look at your application at the point of when the error is thrown. If you don't see anything, post the stack trace with the exception

RE: Tomcat IIS Servlets

2002-02-08 Thread Randy Layman
When you want to run servlets, you do need to modify your mapping. However, people don't generally call servlets from /servlet/className any more. Its more typical that you would have some specific URLs. There are two places where you might be having problems: 1. IIS

REPOST: two web.xml?

2002-02-08 Thread Madock Chiwenda
--- Start of forwarded message --- From: Madock Chiwenda [EMAIL PROTECTED] To: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] Subject: Fwd: two web.xml? Date: 06/02/02 14:45:03 How can a person specify default web.xml to be used at startup. I would like to start

AW: Tomcat IIS Servlets

2002-02-08 Thread Martin Jussel
Hi, Thanx for your help. I checked the IIS log and found lines like that: [...] 2002-02-08 13:29:59 192.168.0.38 - 192.168.0.3 80 GET /kunden/servlet/Abbildung picID=16$08517270 404 [...] I think this is what you described under 1. and so I've to modify the uriworkermap.properties. Can you

AW: Tomcat IIS Servlets

2002-02-08 Thread Martin Jussel
Is it possible to do a more *basic* configuration? I want to run multiple webs and do not want to change the uriworkermap.properties for each app. Replacing default.worker=ajp13 /admin=$(default.worker) /admin/*=$(default.worker) /examples=$(default.worker) /examples/*=$(default.worker) with

RE: REPOST: two web.xml?

2002-02-08 Thread Anton Brazhnyk
Hi, -Original Message- From: Madock Chiwenda [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 2:13 PM To: [EMAIL PROTECTED] Subject: REPOST: two web.xml? --- Start of forwarded message --- From: Madock Chiwenda [EMAIL PROTECTED] To: [EMAIL PROTECTED]

RE: Tomcat + Apache lifecycle question

2002-02-08 Thread Anton Brazhnyk
Hi, -Original Message- From: Daniel Drasin [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 3:37 PM To: Tomcat Users List Subject: Tomcat + Apache lifecycle question I've set up Tomcat 4.x to work with Apache 1.3.x using the Warp connector stuff. I followed the

RE: servlet.jar and 3.3

2002-02-08 Thread Larry Isaacs
I believe that org.apache.tomcat.startup.Main now requires a task to be specified. It no longer defaults to starting. Include start or -start (without quotes) as an argument to the Main class. Cheers, Larry -Original Message- From: Mario Felarca [mailto:[EMAIL PROTECTED]] Sent:

RE: Tomcat IIS Servlets

2002-02-08 Thread Randy Layman
I don't believe that the ISAPI Redirector offers double wild cards, but it would seem like what you are trying to do is: /*/servlets/*=${default.worker} Like I said, I don't believe that this syntax is supported, but there is nothing stopping you from downloading the source and

Re: Tomcat + Apache lifecycle question

2002-02-08 Thread Julien OIX
Daniel Drasin a écrit : I've set up Tomcat 4.x to work with Apache 1.3.x using the Warp connector stuff. I followed the standard instructions for how to modify the httpd.conf file of apache, etc. (All pretty straightforward...) My problem is that i need to have a certain activity occur

Need help with CLIENT_CERT authentication

2002-02-08 Thread Anton Brazhnyk
Hi All, I tried to get client authentication through certificate working. No success so far. I had a hard time with a certificate chain and it has finally worked. So server authentication is ok now. I turned to client auth and here are some more troubles. I've got couple personal certs

RE: Tomcat + Apache lifecycle question

2002-02-08 Thread Kaddumukasa, Charles
To achieve what you're trying to do, use the Singleton Pattern. I have used it successfully. In the init method, have a class with a private constructor and a public static synchronized method that creates an instance of the class and creates and stores the objects in the context. But remember

Re: web hosting

2002-02-08 Thread Mark Gordon
I am new to the apache/tomcat environment. I have been developing web-apps using resin as http and servlet containerso from what I have seen we have to add an entry to the httpd.conf file denoting the web-app. so you can't auto-deploy. Is this correct? The apache/tomcat environment

Logging virtual host

2002-02-08 Thread Elm Gysel
Hello, I have a question regerding logging in Tomcat. When I define a Virtual Host in Apache i would put VirtualHost * DocumentRoot /home/gunnar/public-www/opbit/ ServerName somename CustomLog /home/gunnar/public-www/logs/opbit.log full /VirtualHost Or even maybe ErrorLog

Re: Strange mod_webapp problem with Tomcat 4.01 Apache 1.3.23...

2002-02-08 Thread Andrzej Jan Taramina
That was a known bug eith TC 4.01. It was fixed a few weeks ago, you should try a more recent version of Tomcat, such as 4.02 beta2 or even a recent daily snapshot. I tried 4.02 beta2, and the same problem still exists in that release (Under windoze)images are not handled correctly

Tomcat multiple machines

2002-02-08 Thread Todd Wright
I've been using Tomcat on SCO for a while. I need to have a certain web-app be hosted on a different box, (Linux) What is the right way to do this? There are a ton of posting for load balancing, but this just a single web-app. I don't know what to look for. Your help is greatly appreciated.. I

Re: How do I define Tomcats CLASSPATH - tools.jar not found

2002-02-08 Thread Christopher K. St. John
Antony Stace wrote: I started Tomcat and got an error which after some investigation said I needed tools.jar in my CLASSPATH. Have you set JAVA_HOME correctly? What script are you using to start Tomcat? What does the script print when it starts up? What, exactly, is the error message

RE: Re[2]: Init method of servlet called twice?

2002-02-08 Thread Cox, Charlie
-Original Message- From: Serge A. Redchuk [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 3:30 AM To: [EMAIL PROTECTED] Subject: Re[2]: Init method of servlet called twice? Hello Anton, Can anybody tell me why the init method can be called twice in a servlet.

Re: setMaxAge getMaxAge cookie problem

2002-02-08 Thread Christopher K. St. John
Hammonds Nicholas wrote: One thing I have done is to use the setMaxAge method on a cookie object. But when I interrogate the cookie using getMaxAge in the other servlet the value is always -1 reagardless of what I originaly set it to. It's not Tomcat-specific, that's how it's supposed

AW: Tomcat 3.3a IIS JDBC

2002-02-08 Thread Martin Jussel
... and no more CLASSPATH definition is needed!? I removed the entry for the JDBC driver and it still works. Is this normal after copying the stuff to TOMCAT_HOME/lib/common? Maritn -Ursprüngliche Nachricht- Von: Martin Jussel Gesendet: Donnerstag, 07. Februar 2002 19:37 An:

RE: java.lang.StackOverflowError

2002-02-08 Thread Mike Millson
Are you using jdk 1.3? If so, this is a known issue (see tomcat documentation), and you should start using j2sdk1.4. It's beta, but I haven't had any issues w/it, and it solved this problem for me. You can keep 1.3 on your machine. Just install 1.4 and update your JAVA_HOME environment variable

Tomcat IIS optional packages

2002-02-08 Thread Martin Jussel
Hi, I want to use optional packages like JavaMail. Installing and adding the path to the CLASSPATH seems not to work. Running pages which import classes (e.g. %@ page import='javax.mail.*' %) return a Package *** not found in import. How to include these packages correctly? Martin -- To

JAASRealms classes

2002-02-08 Thread juraj Lenharcik
Hello, I downloaded this two files: binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip But I found the JAASRealm classes only in the sources. The bineries doesn`t have them. Is that right, have I to compile the tomcat ? thank you, juraj -- To unsubscribe

Re: Tomcat not running

2002-02-08 Thread Mario Alberto Haza Treviño
I found my error, i changed CATALINA_HOME from CATALINA_HOME=/usr/local/jakarta-tomcat-4.0.1-src/catalina/build to CATALINA_HOME=/usr/local/jakarta-tomcat-4.0.1-src/catalina/dist and all seems OK. (I compiled tomcat 4.01 from sources with Sun's jdk 1.40 rpm on RH 7.2) -- Mario Haza Jefe de

RE: Logging virtual host

2002-02-08 Thread Larry Isaacs
What you are asking for isn't currently supported. You are welcome to enter an enhancement request in Bugzilla bug database. However, since Tomcat 3.3 is in maintenance mode, and 3.3.1 Beta 1 due out soon, chances are not very high to get this feature unless you supply the patch to implement

AW: java.lang.StackOverflowError

2002-02-08 Thread Ralph Einfeldt
I would be more carefully say: it can be a known issue. But it can also be an application error or a setup error. Without any information about where in the java code the StackOverFlow happens and under what circumstances it's hard to say. (As Randy said at least a stacktrace would give some

RE: Tomcat IIS optional packages

2002-02-08 Thread Randy Layman
Tomcat ignores the Classpath (for good reason). You need to add JAR files to either WEB-INF/lib or TOMCAT_HOME/lib as appropriate. Randy -Original Message- From: Martin Jussel [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 11:20 AM To: Tomcat Users List

Re: MIGRATION TO JAKARTA-TOMCAT 4.01

2002-02-08 Thread Frank
I am going through this process and was caught by 1 difference. I don't know if this affects you or not. My app uses rmi servlets and mysql. I have an applet which uses a proxy for the database calls which invokes the servlets. The servlets use rmi to get the database objects, and then

Re: setMaxAge getMaxAge cookie problem

2002-02-08 Thread Craig R. McClanahan
On Fri, 8 Feb 2002, Hammonds Nicholas wrote: Date: Fri, 8 Feb 2002 12:33:07 +0100 From: Hammonds Nicholas [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: setMaxAge getMaxAge cookie problem Hello there, I don't know if

Re: JAASRealm (fwd)

2002-02-08 Thread Craig R. McClanahan
it be that the JAASRealm classes only in the sources are? I downloaded the binary and src but found the needed classes only in the src. binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip Can someone tell me if they come later to the binaries, or I have to build the sources

WG: JAASRealm (fwd)

2002-02-08 Thread juraj Lenharcik
in the src. binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip Can someone tell me if they come later to the binaries, or I have to build the sources? Aargh, that is probably a snafu in my build environment for the nighly builds. The JAASRealm stuff

WG: JAASRealm

2002-02-08 Thread juraj Lenharcik
only in the sources are? I downloaded the binary and src but found the needed classes only in the src. binary: jakarta-tomcat-4.0-20020208.zip src: jakarta-tomcat-4.0-src-20020208.zip Can someone tell me if they come later to the binaries, or I have to build the sources? Aargh

Tomcat and j2se1.4 with headless support

2002-02-08 Thread Vasile . Curelea
I have Tomcat 4.0.1 with j2se 1.4 running on Solaris 7, and some of the servlets running will generate images. Is there special setting in Tomcat to take advantage of the new environment with a headless implementation in j2se 1.4. AWT documentation says: To run our environment with a headless

RE: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Randy Layman
I haven't tried it, but this should work. The -D option is just like the -X options that people use for setting the heap memory. Add it to CATALINA_OPTS (or TOMCAT_OPTS for those running TC3), restart and you should be running just fine. Randy -Original Message-

AW: Tomcat IIS optional packages

2002-02-08 Thread Martin Jussel
Placing the jars in TOMCAT_HOME/lib does not work. But placing it in TOMCAT_HOME/lib/common works!!! Thanx for the help. Martin -Ursprüngliche Nachricht- Von: Randy Layman [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 08. Februar 2002 16:49 An: 'Tomcat Users List' Betreff: RE:

Another Tomcat4 IIS Install

2002-02-08 Thread Richard
Like many others, I am also having difficulty integrating win2ksp2, IIS5.0, and Tomcat 4.0.1. I have read through several how-to docs, read through a few of the mailing list archives but I am still having issues. I used the following link for my main install

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 09:04 AM 02/08/2002 -0500, you wrote: I believe that org.apache.tomcat.startup.Main now requires a task to be specified. It no longer defaults to starting. Include start or -start (without quotes) as an argument to the Main class. Thanks for the idea, unfortunately I still see the same

Re: jsp:useBean / Scope Bug in 4.01 !

2002-02-08 Thread L Rutker
Back to the basic question where in this code: % if (request.getParameter(type)!= null request.getParameter(type).equals(user)) { % jsp:useBean id=user class=com.rutker.UsrData scope=request/ % } else if(request.getParameter(type)!= null

RE: servlet.jar and 3.3

2002-02-08 Thread Larry Isaacs
Sorry. I'm having trouble connecting yesterday to today. Next, I think I would need to see the startup log output and the full stack trace of the error to make further guesses. Cheers, Larry -Original Message- From: Mario Felarca [mailto:[EMAIL PROTECTED]] Sent: Friday, February

Please someone, I really need help with this issue.

2002-02-08 Thread Mark Diggory
I anyone has any experince with this please let me know. It could be just one sentence (Even just one word!). I just need to know why I can't run my users jsp's through my warp connector... Here's my Connector in server.xml !-- Define an Apache-Connector Service -- Service name=Tomcat-Apache

Re: jsp:useBean / Scope Bug in 4.01 !

2002-02-08 Thread Ryan Lubke
I agree, the id's are unique. Could you attache the generated source file? I'm unable to reproduce this with a build from the HEAD branch, so I'm curious what the difference (if any) is. On Fri, 2002-02-08 at 12:31, L Rutker wrote: Back to the basic question where in this code: % if

Moving to Tomcat from SilverStream - replacement for Fulcrum?

2002-02-08 Thread Sean LeBlanc
We are in the process of transitioning from SilverStream to Tomcat. SilverStream bundles with Fulcrum Search engine. Does anyone know of any good replacement options to intelligently (and quickly) search text fields? Preferably an open source solution? TIA, Sean -- To unsubscribe:

Re: java.lang.StackOverflowError

2002-02-08 Thread amohammad
Thanks for the reply mike and randy. Iam using IBMJava2-122 .Is this the problem.Because tomcat4.0.1 just hangs .I know its for sure it is not an application issue as this happens with examples web application too.so if i install jdk1.4 if it solve this problem i will do that.tomcat run only for

Manage the garbage collector in tomcat

2002-02-08 Thread Emilio Miranda
Hello , I want to modify the action of garbage collector. Where can I change this values (-Xms, -Xmx,-Xminf, etc.)? or I have to modify the scripts where you call %JAVA_HOME%? Thanks a lot for the time . -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

RE: Manage the garbage collector in tomcat

2002-02-08 Thread Randy Layman
In Tomcat 3 you set TOMCAT_OPTS, Tomcat 4 CATALINA_OPTS. On Windows this would be something like: SET TOMCAT_OPTS=-Xms128M -Xmx2048M and these will get passed to the JVM at Tomcat startup. Randy -Original Message- From: Emilio Miranda [mailto:[EMAIL PROTECTED]]

Re: AW: java.lang.StackOverflowError

2002-02-08 Thread McLaughlin, Jim
try ulimit -s 2048 before starting tomcat. Solved the problem for me a way back. hth, jim I would be more carefully say: it can be a known issue. But it can also be an application error or a setup error. Without any information about where in the java code the StackOverFlow happens and

RE: Manage the garbage collector in tomcat

2002-02-08 Thread Emilio Miranda
ok I have tomcat 4.0 if I understand you mean that I have to set environment variable with TOMCAT_OPTS ? or CATALINA_OPTS Really apreciate if you could help in that. -Mensaje original- De: Randy Layman [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 08 de febrero de 2002 12:11 Para:

RE: Manage the garbage collector in tomcat

2002-02-08 Thread Randy Layman
CATALINA_OPTS -Original Message- From: Emilio Miranda [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 1:07 PM To: Tomcat Users List Subject: RE: Manage the garbage collector in tomcat ok I have tomcat 4.0 if I understand you mean that I have to set environment

manager app: deploy new Host ?

2002-02-08 Thread Christos Karras
I use the tomcat manager app to be able to modify existing sites without having to restart the Tomcat server. It works fine, but I'm hosting multiple sites on the same Tomcat server, and each site has its own virtual host. Each virtual host has a corresponding Host in server.xml, so when I want

Image handling mod_webapp problem

2002-02-08 Thread Andrzej Jan Taramina
That was a known bug eith TC 4.01. It was fixed a few weeks ago, you should try a more recent version of Tomcat, such as 4.02 beta2 or even a recent daily snapshot. Nope. Still doesn't work. I'm running on Win2K Server(SP2). I grabbed the latest dev snapshot of Tomcat 4.0.2 (Feb 8th).

help with diretories in servlets

2002-02-08 Thread Gohil, Hemant
Hi ! I am trying to create a samll web application which will query the database depending upon the input parameters provided, generates XML file from the Result Set, applies XSLT and generates HTML, which in turn I want to display in a frame. I want to organize those files in

RE: java.lang.StackOverflowError

2002-02-08 Thread Mike Millson
It supposedly isn't an issue w/ the IBM jdk, so installing jdk1.4 might not solve your particular problem. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:50 PM To: Tomcat Users List; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject:

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 12:36 PM 02/08/2002 -0500, you wrote: Sorry. I'm having trouble connecting yesterday to today. Not a problem. I know the feeling. :) Next, I think I would need to see the startup log output and the full stack trace of the error to make further guesses. Here is my stderr.log. There is

Re: java.lang.StackOverflowError

2002-02-08 Thread amohammad
I am usign HTML and servlets.both of them handled by tomcat.HTML files do have some images. Is tomcat4.0.1 have problems with image loading?. the application is not so large it is only few HTML's and Servlets.still the tomcat hangs after every 30 minutes. All the HTML s and images are in

RE: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Vasile . Curelea
Thanks Randy, I modified catalina.sh file inserting if [ -z $CATALINA_OPTS ] ; then CATALINA_OPTS=-Djava.awt.headless=true headless support fi .. restarted the server and I get the following exception: java.awt.HeadlessException at

RE: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Randy Layman
JavaDoc for 1.4 indicates: Thrown when code that is dependent on a keyboard, display, or mouse is called in an environment that does not support a keyboard, display, or mouse I think this is a Sun problem, not Tomcat. Randy -Original Message- From: [EMAIL PROTECTED]

SSL and multipart/form-data POST ?

2002-02-08 Thread August Detlefsen
Is it possible to use SSL with multipart/form-data on a POST operation? The send form in my webmail app uses a multipart post for attachments. It works fine over regular http, but chokes on https. Is this a limitation of Tomcat-Apache-mod_ssl or am I barking up the wrong tree? form

RE: servlet.jar and 3.3

2002-02-08 Thread Larry Isaacs
Hi Mario, At this point my help may be in the form of a sequence of possibly worthless guesses. Since it is a pain for me to try to keep up with tomcat-user from home over the weekend, reply directly to me if need an answer during this time. From the log, I am curious about the Install Dir\...

RE: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Vasile . Curelea
Looks like I'm out of luck here and I should go back to pre jkd 1.4 solutions using Xserver or Xvfb? Randy did you had the chance to try headless support on your system? thanks vasile Did

Re: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Christopher K. St. John
[EMAIL PROTECTED] wrote: I modified catalina.sh file inserting if [ -z $CATALINA_OPTS ] ; then CATALINA_OPTS=-Djava.awt.headless=true headless support I think the idea is that you just need to do a: $ export CATALINA_OPTS=-Djava.awt.headless=true $ bin/startup.sh No need

Re: Tomcat 4.0.1 Performance tuning problems

2002-02-08 Thread Gerard van Enk
Remy Maucherat wrote: Hello, We're having some troubles with our Tomcat4.0.1. I'm not sure if there's a problem in the configuration or if it's something else. First the configuration: Sun-Fire-280R/Solaris 8 1024MB Memory Sun jdk1.3.1_01 with 512MB for the jvm and the following configuration

Exception : No Suitable JDBC Driver Found, when running Tomcat 4.0 as NT service with JDK1.3.1_01

2002-02-08 Thread Liu, Dongqi
Hi all, I used jk_nt_service to install tomcat as a NT service. However, when I start the service, I got an Exception complaining No Suitable Driver Found. However, when I start tomcat from the command line, everything works fine. My JDBC driver is loaded successfully by Tomcat when running as

RE: servlet.jar and 3.3

2002-02-08 Thread Mario Felarca
At 03:53 PM 02/08/2002 -0500, Larry Isaacs wrote: Hi Mario, At this point my help may be in the form of a sequence of possibly worthless guesses. Since it is a pain for me to try to keep up with tomcat-user from home over the weekend, reply directly to me if need an answer during this time.

web.xml example for new app in Tomcat 4?

2002-02-08 Thread Walter G. da Cruz
Hello: I need an example how to configure web.xml for a new application in Tomcat 4.01. When I was using Tomcat 3.x, I had something like this: ?xml version=1.0? !DOCTYPE web-app PUBLIC //Sun Microsystems, Inc.//DTD Web Application 2.2//EN

Re: Tomcat and j2se1.4 with headless support

2002-02-08 Thread Vasile . Curelea
Thanks Christopher, can you please post the entire servlet sample code you used! can't figure what I'm doing wrong here. vasile Christopher

Bad escape sequence using jikes

2002-02-08 Thread Gerard van Enk
Hello, We sometimes get errormessages saying: Bad escape sequence. Most of the time it occures when there are certain characters like é in the jsp-pages. It happens only when the jsp-page is created on windows. We're using tomcat4.0.1 and jikes on solaris. Is there a way to set the encoding

Re: Please someone, I really need help with this issue.

2002-02-08 Thread Janek Bogucki
Hi Mark, Could you be a more specific about what is happening/not happening. One thing maybe worth looking at in your warp config WebAppConnection warpConnection warp localhost:8008 WebAppDeploy examples warpConnection /examples/ WebAppDeploy manager warpConnection /manager/

security-constraint problems

2002-02-08 Thread Christian Cryder
Hi folks! I'm observing a couple of problems with security-constraints, and I'd like to know wether I'm encountering bugs in Tomcat or simply doing something stupid. Here are the details: I have a constraint that is setup like this: security-constraint web-resource-collection

Manage of memory and Garbage collector.

2002-02-08 Thread Emilio Miranda
Hello, maybe is an off-topic but could anybody tell me how could I know the value of parameters like Xms , MaxPermSize, Xminf, New Ratio , etc. which are involve with the garbage collector -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles

Re: Manage of memory and Garbage collector.

2002-02-08 Thread Matt Egyhazy
you can set what they are with an environment variable. which one depends on the version of tomcat you are running. this is in the docs. matt - Original Message - From: Emilio Miranda [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, February 08, 2002 5:38 PM

Re: Another Tomcat4 IIS Install

2002-02-08 Thread Richard
Problem solved.. I guess I over-engineered it.. stuck with the default uriworkers and did not add a virtual directory within webapps... - Original Message - From: Richard To: [EMAIL PROTECTED] Sent: Friday, February 08, 2002 9:08 AM Subject: Another Tomcat4 IIS Install

jdbc driver deployment problem.

2002-02-08 Thread gilmoresp
Q: How can I get Tomcat to see 3 specific jar files? They're already in my classpath. Details: Win2k, MSSQL 2k sp1, tomcat 4.0.1 (not a service), apache 1.3.22 (service). Aargh. It was suggested that I try to change jdbc drivers in my servlets. I used to use the jdbc/odbc bridge (sun

tomcat plugin on mac

2002-02-08 Thread hallvard
I try running tomcat as plugin to webstar 4.5 on a g3 mac, and get this strange malfunction: Is there any explanation to why tomcat works perfectly when called directly on port 8080, while when called as a webstar plugin, it just works a little. For instance, the numberguess seems ok at first,

  1   2   >