AW: Tomcat - Request Handling

2002-01-24 Thread Ralph Einfeldt
If the resources are allocated in the jsp there are two options: - use a try/finally block in your jsp where you release all resources that are allocated - if you have several jsp's that allocate the same resources you can create a subclass that allocates and free's the

Stand alone Tomcat 3.2.2 - Virtual hosting

2002-01-24 Thread Mark Biciunas
I have a problem where I am loosing my gif's when I set up virtual hosting. Using Tomcat 3.2.2 in stand alone mode, I have updated server.xml to include: Host name=domain1 Context path= docBase=webapps/myapp ... /Context /Host My gif files are

AW: Tomcat - Request Handling

2002-01-24 Thread Reto Badertscher
Thanks for your help. I thought that a filter would be the best place to release resources? I'll check for deadlocks - that seems to be pretty hard. Reto -Ursprüngliche Nachricht- Von: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 24. Januar 2002 09:22 An: Tomcat Users

Re: mod_webapp building help

2002-01-24 Thread Gabriel Lopez Millan
I have the same problem under RedHat 7.2. If you know how to fix it, notify me, please. Lloyd Meinholz wrote: The TEST thing seems to be fixed in the latest nightly build (20021119) and in the 4.0.2-b2 src download page. I'm having other problems on Sparc Solaris 8. I get the following

RE: Where is wrapper.properties in Tomcat 4.0.1?

2002-01-24 Thread Anton Brazhnyk
Hi Tom, -Original Message- From: Tom Bednarz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 5:12 PM To: Tomcat Users List Subject: RE: Where is wrapper.properties in Tomcat 4.0.1? Hi Anton, No parameter does not work but tomcat /? works. I guess it must be

setting classpath in TOMCAT 4.0

2002-01-24 Thread Jeff Ong
hi all, I faced problem when try to set CLASSPATH in TOMCAT. I have my own java beans and servlets which located in others path. Where should i set these path in order to let TOMCAT refer it in runtime? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

AW: Tomcat - Request Handling

2002-01-24 Thread Ralph Einfeldt
I don't think that there is something like a general best place. It depends on design of the application. I like to keep the timeframe as short as possible where resources like databases or memory are allocated. That has for us the implication that the allocation of a resource is as near as

RE: Who starts tomcat??

2002-01-24 Thread Anton Brazhnyk
Hi, -Original Message- From: Emerson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 8:42 PM To: Tomcat Users List Subject: RE: Who starts tomcat?? does it (tomcat 4) have already a good user interface to the manager webapp? Yeap, you just need to make some

RE: Sources for Tomcat 4.0.1 Win32 Service

2002-01-24 Thread Anton Brazhnyk
Hi, -Original Message- From: Tom Bednarz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 6:35 PM To: [EMAIL PROTECTED] Subject: Sources for Tomcat 4.0.1 Win32 Service Hi, More specifically I currently have the following problem: I have uninstalled the service

My Apache1.3+ Tomcat4.0.1 are running well together, but ...

2002-01-24 Thread hotmail
I don't know the method that I used to bind them is right, please help me. Of course edit the httpd.conf file . first, find these four lines in the httpd.conf file : 1,#LoadModule proxy_module modules/mod_proxy.so 2,#AddModule mod_proxy.c 3,#IfModule mod_proxy.c ... 4,#/IfModule

RE: setting classpath in TOMCAT 4.0

2002-01-24 Thread Anton Brazhnyk
Hi, -Original Message- From: Jeff Ong [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 12:47 PM To: Tomcat Users List Subject: setting classpath in TOMCAT 4.0 hi all, I faced problem when try to set CLASSPATH in TOMCAT. I have my own java beans and servlets which

mod_webapp problem.. please haaaalp

2002-01-24 Thread thys de wet
I am having problems with mod_webapp.. Yes i have browsed the archives, no i haven't found an answer. Heres the scenario . Tomcat 4.0.1 and Apache 1.3.22 running on solaris 8 sparc. Both of these work fine independantly. Entry in httpd.conf LoadModule webapp_module libexec/mod_webapp.so

Re: setting classpath in TOMCAT 4.0

2002-01-24 Thread Jeff Ong
thanks Anton :) - Original Message - From: Anton Brazhnyk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 24, 2002 7:15 PM Subject: RE: setting classpath in TOMCAT 4.0 Hi, -Original Message- From: Jeff Ong [mailto:[EMAIL PROTECTED]]

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread Cressatti, Dominique
I would try: LoadModule webapp_module libexec/mod_webapp.so WebAppConnection warpConnection warp localhost:8008 WebAppDeploy examples warpConnection /examples for a start. also you missed AddModule mod_webapp.c in your httpd.conf and did you specify your SeverName as well

ClassCastException in tomcat4

2002-01-24 Thread Rene Dietze
Hello.. I have a problem with tomcat 4. My servlet application run's fine under jserv and tomcat 3.3 under tomcat4 receive a java.lang.ClassCastException deep in my startup process.. load classes with the classLoader.. try { System.out.println(loadClass:+clazz); Object o =

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread thys de wet
I've tried that, my servername is specified in httpd.conf, I've also added Addmodule mod_webapp.c. I still get the same problems.. -Original Message- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 1:32 PM To: Tomcat Users List Subject: RE:

READER to InputStream

2002-01-24 Thread Lauer, Oliver
I know I'm a looser but can anybody tell me quickly how I can get a Reader to an InputStream. I've searched for quite a while but I didn't find anything yet ! PLEASE Thanx Oliver AXA eSolutions GmbH AXA Konzern AG Germany Oliver Lauer Web Architect Wörthstraße 34 D-50668 Köln Germany

RE: READER to InputStream

2002-01-24 Thread Walter De Wit
You need a Reader object pointing to an InputStream ? Reader r=new java.io.InputStreamReader(myInputStream); is it that what you want ? -Original Message- From: Lauer, Oliver [mailto:[EMAIL PROTECTED]] Sent: donderdag 24 januari 2002 13:05 To: Tomcat Users List (E-Mail) Subject: READER

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread Cressatti, Dominique
you know what I meant by servername (not the one associated with virtualhost)? unommenting #ServerName and specifying your box like: ServerName DNSNameOfyourServer. Also did you remove/unmented that WebAppInfo directive? Also where did you put WebAppconnection? just after LoadModule? Dom

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread thys de wet
my httpd.conf now looks like : ServerName isolde.ics.didata.com LoadModule webapp_module libexec/mod_webapp.so AddModule mod_webapp.c WebAppConnection warpConnection warp localhost:8008 WebAppDeploy webdav warpConnection /webdav/ WebAppInfo /webappinfo still no

AW: READER to InputStream

2002-01-24 Thread Lauer, Oliver
No, I've a Reader and need an InputStream, sounds silly but the API needs so...:-( AXA eSolutions GmbH AXA Konzern AG Germany Oliver Lauer Web Architect Wörthstraße 34 D-50668 Köln Germany Tel.: +49 221 148 31277 Fax: +49 221 148 43963 Mobil: +49 179 59 064 59 e-Mail: [EMAIL

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread Cressatti, Dominique
LoadModule webapp_module libexec/mod_webapp.so has to be under other LoadModule lines AddModule mod_webapp.c has to be under other AddModule lines and then add WebAppConnection warpConnection warp localhost:8008 WebAppDeploy examples warpConnection /examples at the END of your httpd.conf and

RE: Tomcat Performance Expectations?

2002-01-24 Thread Randy Layman
One common misconception that people seem to have about Tomcat (and application servers in general) is that you can predict how well an application will perform on that server without any real details of the application, but exact hardware details. For almost all applications

RE: READER to InputStream

2002-01-24 Thread Justin Rowles
No, I've a Reader and need an InputStream, sounds silly but the API needs so...:-( The abstract class Reader doesn't have any method to report which InputStream it is connected to. I think you may be out of luck. On the other hand, tell us more about the problem - it sounds interesting. J.

Tomcat/Apache acces control

2002-01-24 Thread Julien OIX
hi everybody, I'd like that directories under my Virtual Host's DocumentRoot can't be browsed by an URL ... I supposed that the Apache configuration could resolve this (in a Directory directive, put the line Options -Indexes), but it doesn't work ...(browsing is always enabled by the

FW: servlets work but JSPs not!

2002-01-24 Thread Elif Zeynep Buyukduman
-Original Message- From: Elif Zeynep Buyukduman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 2:28 PM To: [EMAIL PROTECTED] Subject: servlets work but JSPs not! hi, I am a quite new user of Tomcat. I did set it up, but there seems to be a simple problem. When I run the

RE: servlets work but JSPs not!

2002-01-24 Thread Randy Layman
You do not have your JAVA_HOME environtment variable set correctly, specifically JAVA_HOME/lib/javac.jar is not a valid file path. Randy -Original Message- From: Elif Zeynep Buyukduman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 7:42 AM To: [EMAIL

specifying servlet in subdirectory in web.xml

2002-01-24 Thread Cressatti, Dominique
Hi, how do I specify the location of class in a subdirectory. I have HelloWorldExample.class and LocalStrings.properties under /webapps/test/WEB-INF/classes and my web.xml looks like: ... servlet servlet-namehello/servlet-name servlet-classHelloWorldExample/servlet-class /servlet

RE: mod_webapp problem.. please haaaalp

2002-01-24 Thread thys de wet
I did all that. I still get The requestes URL /examples was not found on this server any further ideas ? -Original Message- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 2:25 PM To: Tomcat Users List Subject: RE: mod_webapp problem.. please

RE: specifying servlet in subdirectory in web.xml

2002-01-24 Thread Randy Layman
The directories under the classes directory correspond to the package statement used in the source file. If you want to call your class hello.HelloWorldExample then you need to put package hello; as the first line of HelloWorldExample.java and recompile. Randy -Original

RE: servlets work but JSPs not!

2002-01-24 Thread Elif Zeynep Buyukduman
thanks Randy, but isn`t this variable line correct? set path=JAVA_HOME;C:\jdk1.1.8\ i think it is. oooRR do i need to do something specific: e.g. set path=JAVA_HOME;C:\jdk1.1.8\bin\ ?? Zeynep -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January

RE: Who starts tomcat??

2002-01-24 Thread Angel, Ronald J
Nice job on the script John. One comment about runlevels rc.X directories for linux users though... It appears to differ from Solaris a bit. Thought this explanation might be useful to anyone who, like me, is knew to Unix and scripting... Hence, apologies for any

RE: READER to InputStream

2002-01-24 Thread Martin van den Bemt
Stuff your readers content in an array and open an InputStream with the array...(ByteArrayInputStream takes an array as a constructor) You have to play around with it though, since it could be that it needs some conversion of some sort to corrrectly end up in the inputstream.. Mvgr, Martin

AW: READER to InputStream / SOAP/JAXB

2002-01-24 Thread Lauer, Oliver
Hi, I'm using SOAP with JAXB to make me nice Java from that XML :-) I receive the XML via attachement: --- AttachmentPart attachment = (AttachmentPart)it.next();

RE: servlets work but JSPs not!

2002-01-24 Thread Randy Layman
You need set JAVA_HOME=C:\jdk1.1.8 for Tomcat to work. If you want to type java at a command prompt you want set PATH=C:\jdk1.1.8\bin Randy -Original Message- From: Elif Zeynep Buyukduman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 7:48 AM To:

Absolute path in AutoWebApp - bug?

2002-01-24 Thread Erik Billerby
Hi! On win32-platform it seems that using an absolute path in the dir property of the AutoWebApp tag in my server.xml does not work properly. I have the following directive set in my server.xml: AutoWebApp dir=d:/testa/jakarta-tomcat-3.3a/webapps host=DEFAULT/ Starting tomcat, the following

RE: specifying servlet in subdirectory in web.xml

2002-01-24 Thread Cressatti, Dominique
Thanks a lot of things start to make sense now Dom -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: 24 January 2002 11:59 To: 'Tomcat Users List' Subject: RE: specifying servlet in subdirectory in web.xml The directories under the classes directory

RE: Tomcat/Apache acces control

2002-01-24 Thread Anton Brazhnyk
Hi, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Julien OIX Sent: Thursday, January 24, 2002 2:37 PM To: Tomcat list Subject: Tomcat/Apache acces control hi everybody, I'd like that directories under my Virtual Host's DocumentRoot can't

RE: servlets work but JSPs not!

2002-01-24 Thread Altug B. Altintas
did u set your CLASSPATH correctly ? -Original Message- From: Elif Zeynep Buyukduman [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 2:48 PM To: Tomcat Users List Subject: RE: servlets work but JSPs not! thanks Randy, but isn`t this variable line correct? set

AW: READER to InputStream

2002-01-24 Thread Lauer, Oliver
But I need byte[] - how do I get that ? AXA eSolutions GmbH AXA Konzern AG Germany Oliver Lauer Web Architect Wörthstraße 34 D-50668 Köln Germany Tel.: +49 221 148 31277 Fax: +49 221 148 43963 Mobil: +49 179 59 064 59 e-Mail: [EMAIL PROTECTED] _

Re: Fwd: Re: Tomcat 4.0.2-b2 + JSSE + Security Manager

2002-01-24 Thread Renato
Hi Glenn, Thanks for the advice. My last try was to leave security manager with just these lines: grant { permission java.security.AllPermission; }; ( which I premuse is the same as running without a security manager ) and it didn't work. I opened a bug report because I don't

JDBC drivers

2002-01-24 Thread John Wadkin
All, The JDBC drivers provided by Oracle are zipped but as I understand it, only jar files are recognised. Is this correct? If so, I guess I'll have to unzip and then jar? I'm using TC 4 on Solaris 8. Thanks, John Quote for the week: The men with the muck-rakes are often indispensable to the

RE: servlets work but JSPs not!

2002-01-24 Thread Randy Layman
For Tomcat 4 (which is what this person is using - the stack trace mentions Catalina), the CLASSPATH environment variable is not used since so many people didn't understand how to properly set it up for TC 3.1 and 3.2. Randy -Original Message- From: Altug B. Altintas

RE: JDBC drivers

2002-01-24 Thread Randy Layman
JAR = Zip + restrictions on the structure. It turns out that Oracle was kind enough to include the correct structure so all you need to do is rename the .zip to .jar. Randy -Original Message- From: John Wadkin [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24,

Re: Tomcat/Apache acces control

2002-01-24 Thread Julien OIX
Anton Brazhnyk a écrit : Hi, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Julien OIX Sent: Thursday, January 24, 2002 2:37 PM To: Tomcat list Subject: Tomcat/Apache acces control hi everybody, I'd like that directories under

RE: JDBC drivers

2002-01-24 Thread Martin van den Bemt
just rename the file, you don't have unzip and rejar it (a jar is a zip file..) Mvgr Martin -Original Message- From: John Wadkin [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 14:35 To: Tomcat Users List (E-mail) Subject: JDBC drivers All, The JDBC drivers

Tomcat / SOAP

2002-01-24 Thread Loïc Lefèvre
Hi, Can someone tell me if tomcat supports SOAP? Best regards, Loïc -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: READER to InputStream

2002-01-24 Thread Martin van den Bemt
As I said, you have to play with it.. You can always stuff the array in a String and do a getBytes() afterwards ;)) Mvgr, Martin -Original Message- From: Lauer, Oliver [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 14:20 To: 'Tomcat Users List' Subject: AW: READER to

RE: Tomcat / SOAP

2002-01-24 Thread Martin van den Bemt
see http://xml.apache.org/soap/docs/index.html for a soap implementation.. Mvgr, Martin -Original Message- From: Loïc Lefèvre [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 14:43 To: Mailing List Tomcat Subject: Tomcat / SOAP Hi, Can someone tell me if tomcat

AW: Tomcat / SOAP

2002-01-24 Thread Lauer, Oliver
Or have a look at the JAXM-package from SUN. I work with that...and TC. Oliver AXA eSolutions GmbH AXA Konzern AG Germany Oliver Lauer Web Architect Wörthstraße 34 D-50668 Köln Germany Tel.: +49 221 148 31277 Fax: +49 221 148 43963 Mobil: +49 179 59 064 59 e-Mail: [EMAIL PROTECTED]

RE: sending mail thru servlets

2002-01-24 Thread Larry Isaacs
If you are adding jars outside of a WEB-INF/lib, you will have to restart Tomcat. The classloaders involved are only built during startup. If you are adding a jar to a web application, then you should only have to restart the web application. Cheers, Larry -Original Message- From:

AW: Tomcat - Request Handling

2002-01-24 Thread Reto Badertscher
Yeah, fully agree - but implementing a filter i'm sure that my locks are removed. The workflow i think is now: -Servlet - JSP - Filter Thanks for your solutions. So I don't like the idea to use a filter to allocate and deallocate resources. The other solution is to overwrite the _jspService

Re: failure of Tomcat standalone to start

2002-01-24 Thread David Hewlett
Bruce, Perhaps a clue to the problem. I attempted to start tomcat standalone under a debugger. i.e. ./bin/catalina debug Then issue the command: run I then obtained the following error message: Exception occurred: java.lang.NoSuchMethodError (uncaught) thread=main,

RE: READER to InputStream

2002-01-24 Thread Anton Brazhnyk
Hi, I'd suggest to implement your own stream with public int read() { return underlyingReader.read(); } it won't be so simple I think, but as starting point... Advantage - no need in buffers (memory) -Original Message- From: Lauer, Oliver [mailto:[EMAIL PROTECTED]] Sent:

AW: Tomcat Performance Expectations?

2002-01-24 Thread Reto Badertscher
Hello, i'm currently testing the application and agree with you. Nevertheless i would be happy if i had some guidelines for configuring Tomcat in a production environment (e.g. impact on setting the different parameters, which settings work best for which type of application, a.s.o). Regards

RE: Absolute path in AutoWebApp - bug?

2002-01-24 Thread Larry Isaacs
This is fixed in the current Tomcat 3.3.1-dev, which you can get at: http://jakarta.apache.org/builds/jakarta-tomcat/nightly-3.3.x/ Cheers, Larry -Original Message- From: Erik Billerby [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 7:50 AM To: [EMAIL PROTECTED]

[Repost] Re: Context problem (I think)

2002-01-24 Thread Marcelo Demestri
Still I could not solve the problem. Please, some suggestion? Thanks to all! Marcelo--- Thanks Dan! But I would like not to have to modify the servlet since it'sthird-party´s servlet. Do you have some solution

RE: [Repost] Re: Context problem (I think)

2002-01-24 Thread Randy Layman
Your problem is the implementation of the original servlet, it is trying to do a Servlet forward (i.e. using the RequestDispatcher to call forward), which requires the destination to be in the SAME webapp (which is why you are getting /ROOT/myApp). You need to either implement the servlet

Tomcat netbeans/forte

2002-01-24 Thread Ilya Khandamirov
Dear all, I'm trying to configure the following development environment: 1. Editing JSP's in Netbeans 3.3 2. Running JSP's under external stand-alone Tomcat 4.01 running in remote debugging mode (JPDA). 3. Watching for runtime errors, exceptions, etc. in Netbeans. I'm able to start tomcat in

mod_jk bug ?

2002-01-24 Thread Ching-Kuan Thum
Hi, I encountered the following error when accessing any java servlet(e.g.http://localhost/servlet/SnoopServlet) through Internet Explorer of PocketPC : java.lang.NumberFormatException at org.apache.tomcat.util.buf.Ascii.parseInt(Ascii.java:188) at

Re: servlets work but JSPs not!

2002-01-24 Thread David Smith
set path=JAVA_HOME;C:\jdk1.1.8\ JDK 1.1.8?? Doesn't Tomcat 4 require a Java 2 JDK like 1.3.1? Just an observation. --David On Thursday 24 January 2002 07:50 am, you wrote: For Tomcat 4 (which is what this person is using - the stack trace mentions Catalina), the CLASSPATH environment

Help giving Tomcat more memory

2002-01-24 Thread Michael Molloy
I'm still experiencing the memory leak with JSPs that I asked about yesterday, and I'm trying to give Tomcat more memory, but it's apparently not working. I changed the following line in tomcat.bat.:startServer from %_STARTJAVA% %TOMCAT_OPTS% -Djava.security.policy . . . to %_STARTJAVA%

RE: Help giving Tomcat more memory

2002-01-24 Thread Randy Layman
No space and capital M works for me (i.e. -Xms256M -Xmx384M), but I'm not sure what is required. Randy -Original Message- From: Michael Molloy [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 8:47 AM To: Tomcat Subject: Help giving Tomcat more memory

Re: Tomcat Performance Expectations?

2002-01-24 Thread Brown Bay
Hi Randy, Thank you for your reply. One common misconception that people seem to have about Tomcat (and application servers in general) is that you can predict how well an application will perform on that server without any real details of the application, but exact hardware details. I

default context with webapp vs. mod_jk

2002-01-24 Thread Ching-Kuan Thum
Hi, The current behavior of webapp with default context like WebAppDeploy examples conn / will capture all URI regardless of the content type (dynamic or static). This poses a problem when Tomcat is deployed with Apache. Is this behavior going be fixed like that ? Any plan to

Heres a DUMP!

2002-01-24 Thread Falcon cheetah
apache 1.3.22 and tomcat 4.0.1 on RH Linux 7.1 with mod_webapp. It starts fine. I can access examples. But if I try to access cocoon it dumps. I stopped Apache and restarted tomcat by itself. And when tried to access cocoon it dumped again. I am attaching the catablina.out.dump for your

Session timeouts

2002-01-24 Thread Matt Goyer
I've added to the following line to my server.xml to try and increase timeouts for the webapp 'matt' but it doesn't appear to have any effect. Am I missing something? Context path=/matt docBase=matt defaultSessionTimeOut=120/ Thanks, Matt -- To unsubscribe: mailto:[EMAIL PROTECTED]

Tomcat and getting it to run under JDeveloper

2002-01-24 Thread David Wynter
Since Oracle are now giving away their nice JDeveloper I thought I'd try to run my Apache Turbine applications and debug them with JDeveloper. Turbine 2.1 includes Tomcat 4.0b6. I picked up the following source from the Netbeans mailing list ( I never got it to work with NetBeans 3.3 and Tomcat

RE: servlets work but JSPs not!

2002-01-24 Thread Elif Zeynep Buyukduman
Tomcat is said to require JDK 1.2 or above. But it didn't reject to set itself up with this version and the servlet examples work well with this verison of JDK. the main problem: at sun`s web page I couldn't find JDK 1.2 or newer versions. I am gonna get mad! there are discussion boards and

Re: Help giving Tomcat more memory

2002-01-24 Thread Michael Molloy
I'll give that a try. Thanks. --Michael On Thursday 24 January 2002 09:03 am, you wrote: No space and capital M works for me (i.e. -Xms256M -Xmx384M), but I'm not sure what is required. Randy -Original Message- From: Michael Molloy [mailto:[EMAIL PROTECTED]] Sent:

Re: Tomcat Performance Expectations?

2002-01-24 Thread Orion Suydam
--- Brown Bay [EMAIL PROTECTED] wrote: My best advice is for you to try it out. Set up a load test and see. One potential bottleneck you didn't mention, by the way, is your bandwidth between you and your users - this can also limit the number of transactions (which is a rather

Re: servlets work but JSPs not!

2002-01-24 Thread David Smith
What platform are you running? I know JDK's for 1.3.1 are available at: http://java.sun.com/j2se/1.3/ for Windows, Solaris, and Linux. You might have to look at IBM's JDK (or one of the others) if these don't cover your platform. --David On Thursday 24 January 2002 09:59 am, you wrote:

AW: servlets work but JSPs not!

2002-01-24 Thread Ralph Einfeldt
http://java.sun.com/j2se/1.3/ http://java.sun.com/j2se/1.4/ http://www-106.ibm.com/developerworks/java/jdk/?dwzone=java -Ursprüngliche Nachricht- Von: Elif Zeynep Buyukduman [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 24. Januar 2002 15:59 An: Tomcat Users List Betreff: RE:

win32 install fail : Encountered exception java.lang.InternalError: jzentry == 0

2002-01-24 Thread Olivier Chicha
h i, I would like to reload the web application that is contained in my war file. 1) I override my war file 2) I use the remove request of the application manager 3) I use the install request of the application manager in 50 % of the case, I receive this message FAIL - Encountered exception

Re: servlets work but JSPs not!

2002-01-24 Thread Jean-Luc BEAUDET
Elif Zeynep Buyukduman a écrit : Tomcat is said to require JDK 1.2 or above. But it didn't reject to set itself up with this version and the servlet examples work well with this verison of JDK. the main problem: at sun`s web page I couldn't find JDK 1.2 or newer versions. I am gonna get

Tomcat prerequisites

2002-01-24 Thread Frederic Michoulier
Hi, Does anybody know where I could find prerequisites for installing Tomcat ? Any list of minimum requirements for hardware / software needed to operate Tomcat ? Thanks for any help. Frederic -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

Re: Help giving Tomcat more memory

2002-01-24 Thread Michael Molloy
Okay, I tried Randy's suggestion below, no spaces and a capital M, but the application still ran out of memory around 79 megs (Windows 2000 Server). I'm fiddling around with a simple java program on my linux box trying to figure this out. My main method is public static void main(String

RE: Tomcat prerequisites

2002-01-24 Thread Emir Alikadic
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 -Original Message- From: Frederic Michoulier [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 10:41 AM To: Tomcat Users List Subject: Tomcat prerequisites Hi, Does anybody know where I could find prerequisites for

running servlet manually

2002-01-24 Thread Cressatti, Dominique
How do I run manually a servlet located in subdirectory. I mean I can run HelloWorldExample directly (not using web.xml) by doing: http://localost:8080/appdir/servlet/HelloWorldExample when it is located in: /webapp/appdir/WEB-INF/classes/ but how would I do it (specify the subdirectory) if

Pooling database connections: best practices?

2002-01-24 Thread Sean LeBlanc
I'm just wondering what kind of best practices are recommended for pooling database connections - with Tomcat and perhaps JSP/Servlets in general. Thanks, Sean LeBlanc -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

RE: Pooling database connections: best practices?

2002-01-24 Thread Reynir Hübner
just use a 3rd party component. check out the www.bitmechanic.com JDBC-Pool. have a nice day -reynir -Original Message- From: Sean LeBlanc [mailto:[EMAIL PROTECTED]] Sent: 24. janúar 2002 16:00 To: [EMAIL PROTECTED] Subject: Pooling database connections: best practices? I'm just

Re: running servlet manually

2002-01-24 Thread Ashish kulkarni
i think, if you have that servlet in the package then http://localost:8080/appdir/servlet/subdir.HelloWorldExample will work, or else i think http://localost:8080/appdir/servlet/subdir/HelloWorldExample may also work i dont no for sure about the second case, but the package thing works for sure

mod_webapp and Tomcat 4.0 - can not call servlet class directly

2002-01-24 Thread Michael Wolfe
Tomcat Users: I have searched Google and the JGuru FAQ trying to get a understanding of how to use the WebAppDeploy to map to the /ROOT webapp, so I can call a servlet class that sits inside that directory directly using Apache. Using Tomcat Standalone, on port 8080, I am able to call my

Re: Pooling database connections: best practices?

2002-01-24 Thread Michael Molloy
Also DbConnectionPool at www.javaexchange.com. Don't know about the one mentioned below, but the one at JavaExchange is free. Working very well for me. --Michael On Thursday 24 January 2002 10:56 am, you wrote: just use a 3rd party component. check out the www.bitmechanic.com JDBC-Pool.

RE: kindly confirm the uninstall steps...

2002-01-24 Thread Andy . Ruben
Can anyone kindly address this question? +Andy -Original Message- From: Ruben, Andy B. Sent: Tuesday, January 15, 2002 4:09 PM To: '[EMAIL PROTECTED]' Subject: kindly confirm the uninstall steps... Folks- I loaded a copy of tomcat 3.2.1 on my laptop to test

RE: kindly confirm the uninstall steps...

2002-01-24 Thread Brian Claridge
Just shutdown the server and delete the tomcat directory. Only version 4.0 has an un-install routine on windows. --- [EMAIL PROTECTED] wrote: Can anyone kindly address this question? +Andy -Original Message- From: Ruben, Andy B. Sent: Tuesday, January 15,

RE: Pooling database connections: best practices?

2002-01-24 Thread Jim Urban
I concur, we've been using DbConnectionPool for over year with no problems. We've used it with Oracle, MS-SQL and MySQL with no problems. Jim Urban Product Manager Netsteps Inc. Suite 505E 1 Pierce Pl. Itasca, IL 60143 Voice: (630) 250-3045 x2164 Fax: (630) 250-3046 -Original

Re: Tomcat prerequisites

2002-01-24 Thread Frederic Michoulier
Well I can't find any list of computers and their OSs that would let Apache/Tomcat work. Would it be OK on iSeries, Windows NT, 2000, AIX, HP-UX, Solaris ? I have already read the doc you are mentioning but it does not help me much... Thanks for answering anyway. It's just that other, commercial

BLOB FROM JSP PAGE

2002-01-24 Thread Mehmet Ugur Kuzu (LinkPlus)
Hello, Is there a way to display images from database blob fields within only jsp, i know that it is impossible because of you can not handle an another outputstream within jsp. But this is a very critical for our application design. sincerely , Ugur

Default servlet / directory listings: different settings per context

2002-01-24 Thread chris brown
Hello, I'm well aware how to globally enable or disable directory listings within Tomcat (by modifying the listings parameter of the default servlet). However, I don't know how to set this up correctly context-by-context. Here's what I've tried: - copying the servlet and servlet-mapping

RE: Tomcat prerequisites

2002-01-24 Thread Randy Layman
-Original Message- From: Frederic Michoulier [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 11:27 AM To: Tomcat Users List Subject: Re: Tomcat prerequisites Well I can't find any list of computers and their OSs that would let Apache/Tomcat work. Would it be OK

How access the Manager-App not over localhost

2002-01-24 Thread Beat Friedli
this works: --- http://ufasrv05:8080/manager/list -- OK - Listed applications for virtual host localhost this doesn't work http://ufa/manager/list -- Apache Tomcat/4.0.2-b2 - HTTP Status 403 - Access to the requested resource has been denied

RE: BLOB FROM JSP PAGE

2002-01-24 Thread Randy Layman
No, JSPs have text only output. You will need to use a servlet and response.getOutputStream to send images (or other BLOBs). Randy -Original Message- From: Mehmet Ugur Kuzu (LinkPlus) [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 24, 2002 11:26 AM To: '[EMAIL

TC 3.3a: strange auto-generated context

2002-01-24 Thread Lemke, Michael ISC 1
I am completely new to Tomcat and just installed TC3.3a for a third party application. The application puts its stuff in $TOMCAT_HOME/webapps/xxx_arch. When starting Tomcat 3.3a it creates a context xxx/arch while I'd expect xxx_arch like Tomcat 3.2.1 did. Is this an expected change? To

RE: Tomcat prerequisites

2002-01-24 Thread Jim Urban
Would it be OK on iSeries, Windows NT, 2000, AIX, HP-UX, Solaris ? The short answer is - yes. Tomcat is written in Java and will run on any Java enabled OS which supports the current TCPIP implementation. We have clients running Tomcat on WinNT, Win2K and Solaris. As for hardware, that

RE: servlets work but JSPs not!

2002-01-24 Thread Craig R. McClanahan
On Thu, 24 Jan 2002, Elif Zeynep Buyukduman wrote: Date: Thu, 24 Jan 2002 16:59:03 +0200 From: Elif Zeynep Buyukduman [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: servlets work but JSPs not! Tomcat is said to

tomcat question

2002-01-24 Thread Andrea Mari
Hi, if in a jsp file i Use a response.sendRedirect(), the path of servername becomes http://hostname:0/context/ What's up? Andrea -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: BLOB FROM JSP PAGE

2002-01-24 Thread David Smith
Have you thought of using a servlet mapped to the file you are working with (ie servlet mapping to *.jpg)? I haven't tried it, but in theory (this is how I would do it if I had to), the servlet would catch the request, access the info from the db and return the binary data. Since the client

Re: setting classpath in TOMCAT 4.0

2002-01-24 Thread Craig R. McClanahan
On Thu, 24 Jan 2002, Jeff Ong wrote: Date: Thu, 24 Jan 2002 18:47:10 +0800 From: Jeff Ong [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], jEff oNg [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: setting classpath in TOMCAT 4.0 hi all, I faced

Re: Tomcat prerequisites

2002-01-24 Thread hacene yanat
Thanks for this rapid reply, I would like to make apache 1.3.22 and tomcat/catalina work together on NT or 2000 Thank you - Original Message - From: Jim Urban [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; Frederic Michoulier [EMAIL PROTECTED] Sent: Thursday,

  1   2   >