RE: OutOfMemory - Set Java Heap Size?

2001-08-24 Thread Aravind Naidu
You can use "-Xms128m -Xmx256m" which means the heap will start at 128m and grow to 256m, but you are better off testing your app first (use verboseGC) to check the memory usage and then setting both parameters to the same no. (i.e.) "-Xms256m -Xmx256m" or to a value suitable to your app usage an

RE: Is there a way to make a default web.xml? --Tomcat 3.x

2001-08-24 Thread Brandon Cruz
I don't think it is read in 3.2.1 either. So does that pretty much mean that we have to make an additional web.xml file and web application for every virtual host? All I really want to do is supress directory listings. Is there another way to do this...maybe on the apache side? Brandon -Or

Re: Netbeans to Tomcat

2001-08-24 Thread Denis Haskin
Uh... none? Seriously, I do all my servlet development in Netbeans and test & deploy on Tomcat. Since we're not in serious deployment yet I don't bother with packaging classes up into jars and all that. On my Win2k box, my servlet environment is set up thusly (extraneous stuff omitted): d:\ser

Error 500 with java.jang.NoSuchMethodError

2001-08-24 Thread Stefano Monni
Hello, I have a problem...(I'm new to Tomcat...) I've set TOMCAT_HOME, JAVA_HOME variables... But when I try to run any simple example (e.g date.jsp) I get an ERROR 500 (Internal Servlet Error) with a java.lang.NoSuchMethodError For example: /examples/jsp/dates/date.jsp Internal Servlet Error

Re: Question working with security realms/Bug discovered?

2001-08-24 Thread Roland
I think the problem is with the error.jsp page: Login error -- please try again. It has a direct reference to login.jsp, and maybe this is causing the problem? Thanks Roland

How can I determine SSL encryption strength in Tomcat 3.2?

2001-08-24 Thread Colin Freas
When I enumerate the attributes for the http request, I don't get a null enumeration. I thought that was where the information should be. I built Tomcat with SSL support on my Redhat 7.1 box. Any help appreciated. Colin Freas

Netbeans to Tomcat

2001-08-24 Thread Mihai Gheorghiu
What steps do I need to take in order to have my work in Netbeans installed properly under Tomcat? Thank you all.

does tomcat always for this much?

2001-08-24 Thread Daniel Lamblin
I have tomcat, running through apache on a pentium machine with 32mb of ram running debain linux. Normally this machine would be fine for serving a few small pages. It even does well with tomcat. But there's something that concerns me going on: I have 7 contexts, and 4 virtual hosts setup, may

Re: New User

2001-08-24 Thread Noble Long
http://jakarta.apache.org/tomcat/tomcat-3.2-doc/uguide/tomcat_ug.html http://home.iwc.net

Re: Question working with security realms/Bug discovered?

2001-08-24 Thread Craig R. McClanahan
Users should *never* try to request the login page correctly. Likewise, the user interface of your app should never reference it. Just set up your links to point at the real pages. The servlet container will "pop up" the form login page whenever the user accesses a protected page, and then hono

Re: Error 500 with java.jang.NoSuchMethodError

2001-08-24 Thread Craig R. McClanahan
Look for an old or incorrect version of servlet.jar (or possibly j2ee.jar) in your CLASSPATH, or in your $JAVA_HOME/jre/lib/ext directory and remove it. Craig On Fri, 24 Aug 2001, Stefano Monni wrote: > Date: Fri, 24 Aug 2001 23:10:28 +0200 > From: Stefano Monni <[EMAIL PROTECTED]> > Reply-To:

Re: does tomcat always for this much?

2001-08-24 Thread Jason Koeninger
Threads on Linux are analagous to processes. What you're seeing here are all of the threads Tomcat has spawned, and the memory shown on each one is actually memory shared between all of them. Best Regards, Jason Koeninger J&J Computer Consulting http://www.jjcc.com On Fri, 24 Aug 2001 16:

Re: OutOfMemory - Set Java Heap Size?

2001-08-24 Thread Craig R. McClanahan
The "java" command line option you want is actually "-Xmx256m" to set the maximum heap size. To set this, you can establish an environment variable named TOMCAT_OPTS (Tomcat 3.x) or CATALINA_OPTS (Tomcat 4.x) that contains the command line options to be sent to the JVM. For example: export TO

New User

2001-08-24 Thread Jeffrey Pegg
I am a new user of tomcat and apache, and was wondering if anybody could suggest a good FAQ or documentation site for setting it up and getting it running. I am moving from IIS and ASP, and I have a lot of web experience, just not in the java world. Jeffrey Pegg, MCSD Systems Manager, AliveCity

Server Application Error

2001-08-24 Thread Arafat Mohamed
I've been using tomcat for a while now with no problems. I've recently run into a problem that has me stumped. I installed tomcat on an NT 4.0 (Service pack 5) server. I've verified tomcat works. The server has approximately 10 ip addresses running as root websites on IIS. The default website is

I need run jakarta-tomcat

2001-08-24 Thread Jaime Gomez
Hi world I have a problem, because I need to run Jakarta-Tomcat over one PC without card network, when i try to run tomcat , i have a mistake with the socket, anyone known how should resolve this problem I think that is possible simulation of card network , but don't known any product free tha

Re: Please help: Problems building tomcat b7, environment variables not recognized

2001-08-24 Thread Levent Guendogdu
Ehrm, yes, solved that one a few hours ago. Should have read the docs earlier. Sorry for bothering you. Thanks anyway. Bye, Levo. Craig R. McClanahan wrote: > > On Fri, 24 Aug 2001, Levent Gündogdu wrote: > > >>Date: Fri, 24 Aug 2001 14:01:39 +0200 >>From: Levent Gündogdu <[EMAIL PROTEC

[FAQ] jGuru FAQ Update

2001-08-24 Thread Alex Chaffee
jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as many other Java topics). Here is an automated update on recent postings to Tomcat-related FAQs. Please direct flames and feedback to [EMAIL PROTECTED] . - Alex

Re: Question working with security realms

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Roland wrote: > Date: Fri, 24 Aug 2001 17:28:08 -0300 > From: Roland <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: Question working with security realms > > > > You don't have to do any "forwarding". Consider the various login metho

Re: server.xml code insert....

2001-08-24 Thread Barnabas Yohannes
Similar to this topic, I read in tomcat/doc/readme of my tomcat 3.2: --- 6.11 Misconfiguration Can Cause CPU-Bound Loop Workaround: kill the offending Tomcat process and correct your server.xml file such that there is a properly configured root context. The only

Re: does tomcat always for this much?

2001-08-24 Thread VASQUEZ_JASON
The reason you see so many "processes" is a result of the way Linux threading works. Linux creates a process for every thread, so a java app with 16 threads, will show 16 processes. In my experience, linux will display them as all using the exact same amount of memory -- but, you don't add t

Please help me on Tomcat config

2001-08-24 Thread KASI RAMAN
My web application is working fine in JSWDK(1.0) environment. I am trying to run the same application with Tomcat and IIS4.0. It is not running correctly(some links are referred incorrectly). So I have questions on basic setup itself and the questions are: · Where exactly I have to put m

Re: Changing Tomcat webapps/ROOT

2001-08-24 Thread John Baker
On Friday 24 August 2001 21:25 pm, you wrote: > Hi > Could someone tell me how can I change the webapps root ? > I would like to get to my servlets app like this > http://my.url.com/myapp/Hello > instead of http://my.url.com/myapp/servlet/Hello That's totally different to what you are asking to d

Re: Question working with security realms

2001-08-24 Thread Roland
> You don't have to do any "forwarding". Consider the various login methods > that might be in use, and assume that the user just requested a protected > resource for the first time: > > * BASIC and DIGEST: The browser will pop up the login dialog. Once the > user authenticates correctly, th

Can't retrieve examples remotely

2001-08-24 Thread Mike & Barb Kollier
Hi everyone, I've just installed tomcat on Linux, my environment is: Redhat 7.1 tomcat 3.2.3 apache 1.3.19 mod_jk When I test the tomcat examples on the install machine things go fine. Testing remotely using either the LAN IP or the internet IP of the machine I often get an error. Somewhere bet

OutOfMemory - Set Java Heap Size?

2001-08-24 Thread Max Hugen
I run Linux/Apache/Tomcat plus Oracle on a server with 512Mb of memory. I have successfully implemented a couple of Internet applications using JSP, Servlets (plus Oracle) etc. For each application (and client) I start a new Tomcat session, using a custom server.xml for each one. All was ok, unti

Re: Tomcat Performance

2001-08-24 Thread Jeff Hoare
Yep, I think that with the later glibc you have to limit the stack size available to the session you run the sun jdk in. It used to *not* start for me untill the stack size was limited to 2meg (ulimit -s 2048), now runs fine. Jeff On Friday 24 August 2001 23:31, you wrote: > On Fri, 24 Aug 20

Re: I need run jakarta-tomcat

2001-08-24 Thread Pierre Carette
If it is under Windows I believe there is a Microsoft loopback driver on the installation cd, Pierre - Original Message - From: "Jaime Gomez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 24, 2001 6:05 PM Subject: I need run jakarta-tomcat > Hi world > I have a probl

Changing Tomcat webapps/ROOT

2001-08-24 Thread Sahar Madani
Hi Could someone tell me how can I change the webapps root ? I would like to get to my servlets app like this http://my.url.com/myapp/Hello instead of http://my.url.com/myapp/servlet/Hello Thanks Sahar Madani *

RE: Is there a way to make a default web.xml? --Tomcat 3.x

2001-08-24 Thread Larry Isaacs
The $TOMCAT_HOME/conf/web.xml is still there (for example purposes?) but it isn't read. To avoid confusion, this file has been removed in Tomcat 3.3. Larry > -Original Message- > From: Jeff Kilbride [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 24, 2001 3:38 PM > To: [EMAIL PROTECTE

RE: response.sendRedirect problems with IE5.5

2001-08-24 Thread Randy Layman
Calling response.sendRedirect does not stop the execution of a JSP page. You are responsible for returning from the _jspService method after calling sendRedirect (by placing a return statement in your JSP). What is actually happening is that Netscape is thinking that its smart

response.sendRedirect problems with IE5.5

2001-08-24 Thread Eric Simpson
When I call the response.sendRedirect() function from a Java Bean I get a response that already has data in it, the only problem is that the response shouldn't have any data in it already. I have a function call before anything is written to the output buffer that determines if this page should c

Re: Is there a way to make a default web.xml? --Tomcat 3.x

2001-08-24 Thread Jeff Kilbride
Hi Rob, 3.2.x still has web.xml in $TOMCAT_HOME/conf. I haven't tried 3.3 yet. Thanks, --jeff - Original Message - From: "Rob S." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 24, 2001 7:42 AM Subject: Re: Is there a way to make a default web.xml? --Tomcat 3.x > Som

Re: Question working with security realms

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Roland wrote: > Date: Fri, 24 Aug 2001 15:27:22 -0300 > From: Roland <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: Question working with security realms > > > Using container managed security means you should *not* do your own > >

Re: Load balancing tomcat and webapp directory location

2001-08-24 Thread Rick Anderson
It seems that this is what I was looking for: http://jakarta.apache.org/tomcat/tomcat-3.2-doc/Tomcat-Workers-HowTo.html I have read the mod_jk document and it does not discuss the details of load balancing tomcat. http://www.google.com/search?as_q=tomcat&num=10&btnG=Google+Search&as_epq=load+ba

RE: Question working with security realms

2001-08-24 Thread Filip Hanik
javax.servlet.http.HttpServletRequest. public java.security.Principal getUserPrincipal() ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net >-Original Message- >From: Roland [mailto:[EMAIL PROTECTED]] >Sent: Friday, August 24, 2001 1

RE: server.xml code insert....

2001-08-24 Thread Larry Isaacs
I'm not sure exactly what you mean by "current full version release". Tomcat 3.2.3 is currently the only "final" released version of Tomcat. Tomcat 3.3 and Tomcat 4.0 are both in beta and are "upgrades" from Tomcat 3.2.3. Tomcat 3.2.3 is a reference implementation for the Servlet 2.2/JSP 1.1 spec

Re: Question working with security realms

2001-08-24 Thread Roland
> Using container managed security means you should *not* do your own > application-managed security -- it's an either/or thing. You should > design your app so that you use one or the other, but not both. > Yes, sure, but my question is, how can I forward the user from the container security to

Re: ldap authentication with tomcat

2001-08-24 Thread Boris Niyazov
Depending on your requirements you may want to create a auth servlet that authenticates users to ldap server using for ex netscape's ldapjdk package or JDNI classes, and then keep users login in the session object. All you protected servlets/jsps should assert the session checking if user's inf

problem with mod_jk

2001-08-24 Thread Nestor Coppolillo
My platform is ( load balancing with tomcat ): Solaris 2.6 ( Sparc ) Apache 1.3.12 Tomcat 3.3.1 mod_jk. jdk1.3 + hotspot server When I installed mod_jk module. My problem is ( the tomcat crash with apache ) ? : The Tomcat log file: 2001-08-23 12:34:48 - Ajp13Interceptor: Processing connection

RE: server.xml code insert....

2001-08-24 Thread Bob Wilson
Ooops...my bad. I was looking at the 3.3 docs and using version 3.2.3. Sorry! Is 4.0 the most current full version release?? And, would it be recommended for me to upgrade from 3.2?? Bob. >From: Larry Isaacs <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "'[EMAIL PROTECTED]'" <[EMAI

keytool error: java.security.cert.CertificateException: IOException: Sequencetag error

2001-08-24 Thread ilya . birman
I am getting an error keytool error: java.security.cert.CertificateException: IOException: Sequence tag error when i try to import s sign certificate into the keystore (JDK 1.3 on Solaris 8) keytool. I have seen a lot of posting on this on the web but no resolution Can anyone help please Ilya ---

RE: welcome file in web.xml with pre-compiled jsp's?

2001-08-24 Thread Thad Humphries
I think you'll have to add index.jsp to the DirectoryIndex of your Apache httpd.conf file, like so: DirectoryIndex index.html index.jsp At 12:47 8/24/2001 -0400, you wrote: >Hi Saritha, > >Yep, I understand how to set up my web.xml - if you look at the bottom of the >mail I sent, you'll see i

RE: Tomcat Performance

2001-08-24 Thread Todd Carmichael
I have found better scalability with IBM, but less stability. I have had acceptable scalability with JDK and rock solid stability. My stress tests were done on single and quad servers on win2k. -Original Message- From: Hari [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 10:15 AM

RE: welcome file in web.xml with pre-compiled jsp's?

2001-08-24 Thread dhay
Hi Saritha, Yep, I understand how to set up my web.xml - if you look at the bottom of the mail I sent, you'll see it there... Works fine if I call index.jsp directly, BUT if I place it as my welcome page using index.jsp it doesn't work! Any suggestions? Dave "Saritha Pula

Sealing Violation help

2001-08-24 Thread James Higginbotham
Ok, Ok.. You've heard it, written responses, and thought it was wrapped up and no one would ever have this problem again :) I'm trying to embed Tomcat 4 beta 6 into my application. I am also using Castor (http://castor.exolab.org), which requires Xerces. I'm getting the sealing violation after C

Re: Search for catalinautil.jar

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Stéphane De Jonghe wrote: > Date: Fri, 24 Aug 2001 16:40:14 +0200 > From: Stéphane De Jonghe <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Search for catalinautil.jar > > Hi, > > where can i find this jar : catalinautil.jar ? > I don'

RE: server.xml code insert....

2001-08-24 Thread Larry Isaacs
Are you sure you are using Tomcat 3.2.3 or looking at the wrong documentation. You are citing documentation that exists only in Tomcat 3.3. Cheers, Larry -Original Message- From: Bob Wilson [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 12:17 PM To: [EMAIL PROTECTED] Subject:

Re: Please help: Problems building tomcat b7, environment variablesnot recognized

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Levent Gündogdu wrote: > Date: Fri, 24 Aug 2001 14:01:39 +0200 > From: Levent Gündogdu <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: Jakarta Tomcat User Maillinglist <[EMAIL PROTECTED]> > Subject: Please help: Problems building tomcat b7, > environment variab

Re: Tomcat Performance

2001-08-24 Thread Hari
Hi Rob, I didn't do comprehensive tests. Just started tomcat, wait about 20 sec, and stop tomcat (using the batch files, on Win2K). I didn't test on Linux. For this 'test' ;-) Sun JDK responds well than IBM JDK. - Hari. - Original Message - From: "Rob S." <[EMAIL PROTECTED]> To: <[EMA

tomcat -- SSL

2001-08-24 Thread brian luk
I am now using apache web server with SSL already setup. that means I can connect to HTTP server using SSL: https://10.0.0.105:443/ or I can connect to HTTP server w/o SSL http://10.0.0.105:80 I can make a request to servlet using SSL: https://10.0.0.105:443/admin/servlet/com.app.Admin or I can

Strange problem with cocoon under Tomcat

2001-08-24 Thread Enric Staromiejski
We're running Tomcat+Apache OK. When invoking a jsp page for example thru port 80 (i.e., without having to invoke port 8080), , apache gives control to Tomcat and Tomcat serves the page correctly, but once Cocoon installed, we still accede to the jsps correctly served by Tomcat but the only way of

RE: Trying to start Tomcat without jaxp.jar and parser.jar

2001-08-24 Thread Enric Staromiejski
Yes, you're right. That was precisely our problem. We wanted to use Xerces_1_4_1.jar insted of the default Tomcat's but when substituting them with Xerces we had an exception. We've solved this initializing the TOMCAT_OPT environment variable with "-classic". The problem is the jdk1.3.1 token bug

Re: Trying to start Tomcat without jaxp.jar and parser.jar

2001-08-24 Thread Craig R. McClanahan
Sounds like you're trying this on Tomcat 3.2. This version of Tomcat *requires* an XML parser in the lib directory (or on the classpath) for its own internal operations. Craig On Fri, 24 Aug 2001, Enric Staromiejski wrote: > Date: Fri, 24 Aug 2001 12:28:02 +0200 > From: Enric Staromiejski <[EM

Help reqd on Tomcat config on NT

2001-08-24 Thread KASI RAMAN
I am trying to use Tomcat as my Servlet engine. I think I configured the Tomcat with IIS(4.0) properly. The example application provided by the Tomcat is working fine with IIS web server. I have created one web application using Servlets and some HTML files, and the application is working fine in

Re: A query on Single Sign On

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Shilpa Potnis wrote: > Date: Fri, 24 Aug 2001 15:53:30 +0530 > From: Shilpa Potnis <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: A query on Single Sign On > > Hi > > I would like to know about the Single Sign On Facility. > > If I have

RE: How do I make Tomcat include needed jars for my servlet?

2001-08-24 Thread Miles I. Daffin
> Hi all, > I have read this topics but it still can not resolve my > problem. Your suggestion is to copy application related jar > files into %YourWebAppPath%/WEB-INFO/lib dirctory. But my > application is under development, so whenever I regenerated jar > files for my web app, I have

Re: How do I make Tomcat include needed jars for my servlet?

2001-08-24 Thread Craig R. McClanahan
On Fri, 24 Aug 2001, Ju Yan Jery Qin wrote: > Date: Fri, 24 Aug 2001 16:58:14 +0800 > From: Ju Yan Jery Qin <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject: Re: How do I make Tomcat include needed jars for my servlet

Re: Tomcat Performance: scaled cat

2001-08-24 Thread mazzen al-najjar
"Miles I. Daffin" wrote: > "Aravind Naidu" wrote: > > On RH 7.1 linux, the IBM JDK 1.3 (latest build) runs like a scaled cat. > > Is that good or bad? I have never seen a 'scaled cat' so cannot tell. > Sounds like a mutant, so maybe it's got funny legs or something? i think it's first cousin to a

RE: Directory Structure Question

2001-08-24 Thread Miles I. Daffin
> I have a number of servlet class files which I would > like to put in a separate folder from the rest of the > servlet files. This folder could be called > parent_classes because these are simply parent classes > of the servlets. Will Tomcat allow me to do this? If > so, how can I get this to w

RE: Trying to use BrowserHawk4j

2001-08-24 Thread Miles I. Daffin
Find the jar (or zip?) file containing the browserhawk class files (in particular com.cyscape.browserhawk.*). Place a copy of this archive in the host webapp's WEB-INF/lib directory. Then redeploy the webapp, restart TC and try again. Miles > -Original Message- > From: [EMAIL PROTECTED

server.xml code insert....

2001-08-24 Thread Bob Wilson
I am using TOMCAT 3.2.3 and everything seems to be running fine however in the documentation regarding configurations to TOMCAT for auto-generating web server config files, I noticed it says to add the following code after the module in the server.xml. Here is the code... Apache mod_jk con

RE: Tomcat Performance: scaled cat

2001-08-24 Thread Miles I. Daffin
> Maybe it has got something to do with a crappy OS ! Sorry. could'nt resist > > On RH 7.1 linux, the IBM JDK 1.3 (latest build) runs like a scaled cat. > Is that good or bad? I have never seen a 'scaled cat' so cannot tell. Sounds like a mutant, so maybe it's got funny legs or something? Miles

Re: I do not want to use 'webapps'

2001-08-24 Thread Rob S.
See the tag in server.xml, esp the "docBase" attribute. - r On Fri, 24 Aug 2001 17:53:26 +0200 [EMAIL PROTECTED] wrote: > Hello! > > I am trying to set up Tomcat to work in the environment where we have been > developing another application. In this environment we do not have a > webapps direc

Re: I do not want to use 'webapps'

2001-08-24 Thread Denis Haskin
Yup, just set up a new context in server.xml: Which can then be accessed with the url http://localhost:8080/mysandbox (using the standalone http connector). Note the use of forward slashes, not backward, even though you're on Windows... dwh Claes Holmerson wrote: > Hello! > > I am

[OT] Re: Tomcat Shirts?

2001-08-24 Thread Denis Haskin
Fine, be a technology bigot . There's a couple of other web sites that offer similar services. I just happen to know about cafepress. dwh "James, Stuart" wrote: > .aspx, sound's like a Mickey mouse website.

I do not want to use 'webapps'

2001-08-24 Thread Claes Holmerson
Hello! I am trying to set up Tomcat to work in the environment where we have been developing another application. In this environment we do not have a webapps directory. The output path for JBuilder is C:\sandbox\development, and this is also were the classpath points to when we test our builds

Re: mod_webapp and make !!!

2001-08-24 Thread Bekkali Hatim - Soamaï
Le Vendredi 24 Août 2001 13:40, vous avez écrit : > Quoting hatim <[EMAIL PROTECTED]>: > > You downloaded the wrong version of the binary... There's one for GLIBC > 2.2 and one for GLIBC 2.1 > Where can i find the version for Glibc 2.1 ? i didn't find it ine the download section . > > make[1]

RE: Tomcat Shirts?

2001-08-24 Thread James, Stuart
.aspx, sound's like a Mickey mouse website. -Original Message- From: Denis Haskin [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 4:01 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat Shirts? Well, if someone has a logo, someone could set up a store at www.cafepress.com and sell lo

Re: Tomcat Shirts?

2001-08-24 Thread Lloyd Llewellyn
> Hi, I recently saw someone with a Tomcat T-shirt. Is there anywhere one > can order Tomcat gear??? Or even Java "junk" for that matter? (posters, > izods, mugs)? I'd love to have a small Java logo poster to hang at work. I think the Tomcat logo is GREAT!

RE: error-page not working in TC 3.2

2001-08-24 Thread Jim Urban
The browser shows the standard error page and the log shows the standard messages. Nothing in the log references my error pages. Its as if TC ignored the directives in my web.xml (which I'm sure is what is happening). Jim -Original Message- From: Rob S. [mailto:[EMAIL PROTECTED]] Sent:

Re: Any idea?

2001-08-24 Thread Levent Guendogdu
> If you did everything correctly you should get a list of .iso files. You can > now download and burn them. > > Easy, isn't it? ROTFL... Marcus, you're great!!! I just can't stop laughing...

Re: Tomcat Shirts?

2001-08-24 Thread Denis Haskin
Well, if someone has a logo, someone could set up a store at www.cafepress.com and sell lots of stuff with Tomcat on it. Either no profit (sure, cafepress gets some) or I suppose some small money back to Apache. Does the Apache Foundation have a policy on this? Anyway, see http://www.cafepres

Re: a simple ( irritating) classpath problem

2001-08-24 Thread yilmaz
Hi everyone, i had two problems related with this thread for the classpath problem the solution i found by chance :) is : setting the environmental variables through the command window as : set CLASSPATH=c:\jdk1.3;c:\jdk1.3\lib\tools.jar;d:\tomcat4\jakarta-tomcat-4.0-b7 \ mon\lib\servlet.jar;d:\to

Re: RequestDispatcher.forward()?

2001-08-24 Thread Rob S.
> Can you please explain to me how to use RequestDispatcher.forward()? Yikes... you're better off searching Google or picking up a book on servlets. Or heck, you could read the servlet api javadoc comments =) - r

RequestDispatcher.forward()?

2001-08-24 Thread yuval
Can you please explain to me how to use RequestDispatcher.forward()? Regards, Yuval Domain The Net Technologies Ltd. 6 Weitzman Blvd. Ramat-Hasharon Israel 47211 Tel: 972-3-5474443 Fax: 972-3-5474446 www.DomainTheNet.com “This email message and any attachments hereto are intended only for use b

Re: How do I make Tomcat include needed jars for my servlet?

2001-08-24 Thread Vladimir Grishchenko
Yet another one: Place codebase dirs on system classpath, you'll have to restrat tomcat every time there's a change. --V. - Original Message - From: "Vladimir Grishchenko" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 24, 2001 7:38 AM Subject: Re: How do I make Tomcat

Re: Is there a way to make a default web.xml? --Tomcat 3.x

2001-08-24 Thread Rob S.
Someone correct me if I'm wrong plz =) but I believe the web.xml in $TOMCAT_HOME/conf is applied to all web apps. I think I read on the dev list (from Larry) that this feature was removed in 3.x to increase app portability ===> that relying on a default web.xml reduces the portability of an ap

Search for catalinautil.jar

2001-08-24 Thread Stéphane De Jonghe
Hi, where can i find this jar : catalinautil.jar ? Stéphane De Jonghe

Re: error-page not working in TC 3.2

2001-08-24 Thread Rob S.
> Ok, I give up, what am I doing wrong? I dunno, what happens in the browser and what's output in the log? - r

bug report: tomcat isapi_redirect not closing http connection

2001-08-24 Thread Karel Haeck
Hi, I have a problem with integration tomcat 3.2.1 with IIS. The setup works ok, but when a try a servlet or jsp the server does not close the HTTP connection socket, making the browser (IE) showing a hourglass as if there were more data to come. This happens with both the examples and my own se

Re: Newbie question re '.war' files

2001-08-24 Thread Rob S.
> I've added 2 ".war" files to the $TOMCAT_HOME/webapps dir as per install > notes but restarting tomcat doesn't affect them and I can't find (yet) any > other info on what I have to do to extract them (they are archives right?). Restarting Tomcat should have expanded them into their respectively

Re: How do I make Tomcat include needed jars for my servlet?

2001-08-24 Thread Vladimir Grishchenko
Well, I think you have 3 options: 1. Switch to Linux and use symlinks 2. Ask Sun to change servlet spec. 3. Write a script that will copy the files in one shot. Cheers, --V. - Original Message - From: "Ju Yan Jery Qin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>;

RE: Is there a way to make a default web.xml? --Tomcat 3.x

2001-08-24 Thread Brandon Cruz
Sorry, forgot to mention tomcat version 3.x -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 9:17 AM To: [EMAIL PROTECTED] Subject: Is there a way to make a default web.xml? Is there a way to make a default web.xml file that will work across

Re: a simple ( irritating) classpath problem

2001-08-24 Thread yap_noel
Just for the record, can you post what you did with ParameterParser (future archive searchers will appreciate it)? Thanks, Noel HI ALL, first of all thanks for everybody for your help those garbled chars you see on your email are chinese characters(big5) but i already translated it fo

Is there a way to make a default web.xml?

2001-08-24 Thread Brandon Cruz
Is there a way to make a default web.xml file that will work across all contexts/virtual hosts? Brandon

error-page not working in TC 3.2

2001-08-24 Thread Jim Urban
Ok, I give up, what am I doing wrong? I want to provide my own error pages for certain conditions and I can't seem to get the error-page tag to work. Here is an example of what I put in my web.xml file: java.sql.SQLException /mycontext/dberror.html

Newbie question re ".war" files

2001-08-24 Thread Jon Taylor
Hi, I'm pretty new to Tomcat and a designer not a developer so sorry if this is a dum one, but... I'm trying to get the Dreamweaver UltraDev TagLib extensions flying with our Tomcat 3.2.1 install. I've added 2 ".war" files to the $TOMCAT_HOME/webapps dir as per install notes but restarting tom

Re: Tomcat Shirts?

2001-08-24 Thread Rob S.
Oh man, i'd eat up some Tomcat shirts. I wonder if I we'd be able to use the TC logo the Pier made? You can get Java stuff from http://java.sun.com/. I think it's under "java wear and books." - r On Fri, 24 Aug 2001 09:55:47 -0400 [EMAIL PROTECTED] wrote: > > Hi, I recently saw someone wit

RE: Any idea?

2001-08-24 Thread Deacon Marcus
Hi, > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Sasha Tartchinski > Sent: Friday, August 24, 2001 1:03 AM > To: [EMAIL PROTECTED] > Subject: Any idea? > > > > > > Has anywone know where can i download and burn Microsoft Office XP. > Thanks. Lemme

Tomcat Shirts?

2001-08-24 Thread Craig_Reichenbach
Hi, I recently saw someone with a Tomcat T-shirt. Is there anywhere one can order Tomcat gear??? Or even Java "junk" for that matter? (posters, izods, mugs)? I'd love to have a small Java logo poster to hang at work. Thanks, Craig

Re: Load balancing tomcat and webapp directory location

2001-08-24 Thread Richard Draucker
In your $TOMCAT_HOME/doc/appdev/ directory is a wonderful doc by Craig that fully explains all of this. -r On Thursday 23 August 2001 05:14 pm, you wrote: > We're using tomcat 3.2.3 at the moment and are attempting to > configure tomcat so that it can be load balanced behind an apache web

Re: mod_webapp and make !!!

2001-08-24 Thread Pier Fumagalli
Quoting hatim <[EMAIL PROTECTED]>: > Hi > > i have redhat 6.2 with kernel 2.2.18 ( Va linux) , apache 1.3.20 > i tried to use the mod-webapp.so comming from > webapp-module-1.0-tc40b7-linux.tar.gz > but apache didnt start because of error > Cannot load /usr/local/apache/libexec/mod_webapp.so

Re: Tomcat 4.0.7b and lib help (FIXED)

2001-08-24 Thread Rob S.
> Understand I am an idiot... but oh well... just a suggestion then for > people like me that read... in Developing Applications with Tomcat, in 4.1 > Directory Structure... in the lib/ portions, just put a note... 'JAR's only > (No zips)'... I know it says 'JAR files' but I thought zips and jars

Re: Tomcat Performance

2001-08-24 Thread Rob S.
On Fri, 24 Aug 2001 14:43:50 +0200 [EMAIL PROTECTED] wrote: > i had the best results with the sun jdk 1.3.1 on windows and with ibm jdk > 1.3.0 for linux. on some linux machines the sun jdk wouldn't work at all... Not to defend it or anything =) but I've run it on suse, redhat, debian, and slackw

Re: Tomcat 4.0.7b and lib help (FIXED)

2001-08-24 Thread Shawn Evans
Understand I am an idiot... but oh well... just a suggestion then for people like me that read... in Developing Applications with Tomcat, in 4.1 Directory Structure... in the lib/ portions, just put a note... 'JAR's only (No zips)'... I know it says 'JAR files' but I thought zips and jars were int

RE: Trying to start Tomcat without jaxp.jar and parser.jar

2001-08-24 Thread Enric Staromiejski
We've solved it. It seems the problem is the token bug of jdk1.3.1. We've overpassed it initializing the TOMCAT_OPT to "-classic" inside the file tomcat/lib/tomcat.sh Thanks anyway Enric -Mensaje original- De: Randy Layman [mailto:[EMAIL PROTECTED]] Enviado el: viernes, 24 de agosto d

Re: Tomcat 4.0.7b and lib help (FIXED)

2001-08-24 Thread Dmitri Colebatch
This has come up before... tomcat follows the spec - loading all jars in WEB-INF/lib... no mention of zips (o: On Fri, 24 Aug 2001, Shawn Evans wrote: > I don't know about everyone else, but I got my Oracle classes12.zip in my > lib and it wouldn't work so after looking at my code, wonderin

Re: Tomcat 4.0.7b and lib help (FIXED)

2001-08-24 Thread Shawn Evans
I don't know about everyone else, but I got my Oracle classes12.zip in my lib and it wouldn't work so after looking at my code, wondering what I messed up (4 hours), I decided to change it to *.jar. OMG it decided to work... might want to have TomCat be able to do both zip & jar's in the lib.

3 days trying to make mod_webapp.so !no succes

2001-08-24 Thread Bekkali Hatim - Soamaï
Hi i have redhat 6.2 with kernel 2.2.18 ( Va linux) , apache 1.3.20 i tried to use the mod-webapp.so comming from webapp-module-1.0-tc40b7-linux.tar.gz but apache didnt start because of error Cannot load /usr/local/apache/libexec/mod_webapp.so into server: /lib/libc.so.6: version `GLIBC_2.2'

  1   2   >