Re: Tomcat 5 Context problem

2004-07-07 Thread Koon Yue Lam
thanks, u really help! I will try that out tonight and maybe some posts will raise out tomorrow... ^^ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Integrating Tomcat and IIS

2004-07-07 Thread Tom Burke
- Original Message - From: "Januski, Ken" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 6:38 PM Subject: RE: Integrating Tomcat and IIS > I do believe though that you didn't mention whether you had the > green arrow in the isapi filter on

Re: install task problem

2004-07-07 Thread Michael Labhard
Addendum: The problem isn't specific to the install task. The list task yields this error: java.io.IOException: Server returned HTTP response code: 401 for URL: http://localhost:8080/manager/list If I enter "http://localhost:8080"; in my browser the main Tomcat page comes up. I can enter th

install task problem

2004-07-07 Thread Michael Labhard
I cannot figure out how to get the ant install task to work. I have a WAR file built in the main source directory "./myapp.war". Here is the relevant part of the build.xml: Error: java.io.IOException: Server returned HTTP response code: 401 for URL: http://localhost:8080/

RE: Tomcat 5 Context problem

2004-07-07 Thread Ivan Jouikov
If you use tomcat manager to undeploy your lomboz project will be fine. But I don't know how to undeploy using lomboz sorry. > -Original Message- > From: Koon Yue Lam [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 07, 2004 9:11 PM > To: Tomcat Users List > Subject: Re: Tomcat 5 Contex

Re: Fwd: debug connection pool

2004-07-07 Thread Hans Wichman
Hiya, jolly good plan ;-) If you are using the dcbp commons, there are a couple of methods in the BasicDataSource class for getting this information. So after retrieving the datasource from the context, test if it is a org.apache.commons.dbcp.BasicDataSource and if so cast it. You can then use ge

Re: Tomcat 5 Context problem

2004-07-07 Thread Koon Yue Lam
Thx for the help ! But I would also want to know how to undepoly an webapp? I try ro undepoly using Lomboz and it just build an undepoly.xml script. All files relate to that webapp are still under tomcat home/webapp/ folder. How can I depoly an webapp by using lomboz or using Tomcat manager?? If I

RE: Tomcat 5 Context problem

2004-07-07 Thread Ivan Jouikov
When you simply copy WAR file into $CATALINA_HOME/webapps directory like Lomboz does, you don't need to configure a to describe a path, Tomcat will automatically make it available as localhost:8080/FolderName Where FolderName is the name of the folder inside /webapps/ where you application is.

Problem while calling servlet.......

2004-07-07 Thread Gopalakrishnan
  Hai I am trying to compile and .jrxml file created by iReport to create .jasper file by calling compileReport() method of jasperreport package. While trying to compile .jrxml file using jasper report it create a intermediate .java file and by using that it creates the .jasper file. After compi

Tomcat 5 Context problem

2004-07-07 Thread Koon Yue Lam
Hi, it really not a problem because I got everything work. I just curious WHY it will work ... ^^ I am using Esclipse 3.0 + Lomboz 3.0RC2 and I develop a webapp, details as follow: WebApp name: FirstWebApp Servlet name and class : FirstServlet, FirstServlet.class (package-less) web.xml: has a ser

Tomcat 5, proxy and SSL accelerators

2004-07-07 Thread Graham Leggett
Hi all, I have a tomcat server running behind an SSL accelerator. I have used the proxyName and proxyPort config settings to make sure the real name of the server is used by the web application, but I can find no way of telling the web app that it is running on a secure server. Our server sends

RE: OT? Netbeans v Eclipse v Visual Age for Java

2004-07-07 Thread Aris Javier
i've been using eclipse for a long time.. it's a great IDE... as for Netbeans... i did install it.. but never use it because of HUGE memory allocation... stayed with eclipse... =) -Original Message- From: Sternbergh, Cornell [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 12:50

Re: AGAIN: How can you deploy an application onto a specific host?

2004-07-07 Thread Mark Eggers
Ivan, This depends a lot on your environment. I am running 3 virtual hosts on this machine. I have used the following documentation in setting up a manager application for each virtual host. http://localhost:8080/tomcat-docs/manager-howto.html In particular, I use the following solution: Inst

RE: Tomcat 5.0 and JavaMail

2004-07-07 Thread Schalk
I have never had problems when including mail.jar and activation.jar in my applications WEB-INF/lib/ I believe this makes it more portable to different hosts. Kind Regards Schalk Neethling Web Developer.Designer.Programmer.President Volume4.Development.Multimedia.Branding emotionalize.conceptuali

RE: Integrating Tomcat and IIS

2004-07-07 Thread Aris Javier
I SUCCESSFULLY INTEGRATE TOMCAT 5 WITH IIS... =) SIMPLE AND EASY! aris -Original Message- From: Tom Burke [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 9:42 PM To: Tomcat Users List Subject: Integrating Tomcat and IIS I sent a long email to the list on Tuesday asking for help

RE: Tomcat 5.0 and JavaMail

2004-07-07 Thread Aris Javier
you don't need to put activation.jar and mail.jar inside catalina_home\common\lib\ you need to put them inside java_home\jre\lib\ext... regards... aris -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 11:23 PM To: Tomcat Users List; e-Dento

JMX Tomcat Manager

2004-07-07 Thread EXT-Patel, Rajesh M
Is there a way to use JMX to do what the tomcat manager does. What I want to do is to Reload, Stop, Start and Add Contexts with JMX. Raj - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

RE: AGAIN: How can you deploy an application onto a specific host?

2004-07-07 Thread Mike Curwen
I'm not sure what you see, but my tomcat manager only shows me the applications that exist in the 'current' host. meaning: foo.mysite.com:8080/manager/html/list will show me only those apps deployed under 'foo' bar.mysite.com:8080/manager/html/list will show me only those apps deployed under 'bar'.

RE: AGAIN: How can you deploy an application onto a specific host?

2004-07-07 Thread Laurence Arabia
I can only tell you how I do it Gents but I am not sure if its suitable. I have a NFS mount (Samba) which has my war but generall I dont jar it cause I can just use a file system with the same dir structure. web/ web/WEB-INF web/etc then I go to the host I want to deploy it on and type http

RE: AGAIN: How can you deploy an application onto a specific host?

2004-07-07 Thread Tonte Pouncil
I normally just use ant to deploy my stuff by dropping a .war file into the webapps dir. -Original Message- From: Ivan Jouikov [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 4:30 PM To: 'Tomcat Users List' Subject: AGAIN: How can you deploy an application onto a specific host?

Re: UnsatisfiedLinkError - JNI

2004-07-07 Thread Josef Henryson
See bottom of message... On Jul 7, 2004, at 21:33, Tim Penhey wrote: Josef Henryson wrote: Hi! I get an UnsatisfiedLinkError when trying to System.loadLibrary("foo") from a class instantiated within a Servlet. The library libFoo.jnilib is in a folder within java.library.path and the class loadin

AGAIN: How can you deploy an application onto a specific host?

2004-07-07 Thread Ivan Jouikov
Iâve asked this question before but nobody seemed to know the answer. ÂSo, Iâll ask againâ   So, Tomcat has a maanger application, which allows you to dynamically deploy sutff. Nice. But how can you deploy your stuff onto a SPECIFIC host? Thx.     Best Regards, I

Apache2 and Tomcat 5.0.25 Configuration Using Mod_jk2

2004-07-07 Thread f-gil
Return Receipt Your Apache2 and Tomcat 5.0.25 Configuration Using Mod_jk2 document :

Apache2 and Tomcat 5.0.25 Configuration Using Mod_jk2

2004-07-07 Thread Tonte Pouncil
Hello: I am using window 2000, Apache2, and Tomcat5.0.25. I have downloaded the mod_jk2.so from the tomcat-connectors site. http://jakarta.apache.org/site/binindex.cgi How do I get Apache2 and Tomcat5 to talk to each other using the mod_jk2? If any one know of another solution, please do tel

Tomcat 5.0.25/Apache 1.3.31 mod_jk windows

2004-07-07 Thread Raymond Blum
Hi I am trying to get the mod_jk.dll to work under Windows (XP) with the current Tomcat and Apache 1.3 releases. I have download mod_jk.ddl version 1.3.27, although the notes on the ftp site reference version 1.2.28, X.27 is all that is there. I have the LoadModule directive in my httpd.conf

RE: UnsatisfiedLinkError - JNI

2004-07-07 Thread CAGALLOM
no email please -Mensaje original- De: Tim Penhey [mailto:[EMAIL PROTECTED] Enviado el: Miércoles 7 de Julio de 2004 14:33 Para: Tomcat Users List Asunto: Re: UnsatisfiedLinkError - JNI Josef Henryson wrote: > Hi! > > I get an UnsatisfiedLinkError when trying to System.loadLibrary("foo"

tomcat behind an SSL proxy

2004-07-07 Thread Patrick Glennon
I'm running tomcat standalone ( no apache ) behind an SSL proxy, and my struts apps issue redirects that come back to http://www.something rather than https://www.something Something in response.redirect keeps building a URL with http:// and I

Re: UnsatisfiedLinkError - JNI

2004-07-07 Thread Tim Penhey
Josef Henryson wrote: Hi! I get an UnsatisfiedLinkError when trying to System.loadLibrary("foo") from a class instantiated within a Servlet. The library libFoo.jnilib is in a folder within java.library.path and the class loading it is inside a JAR in $CATALINA_HOME/shared/lib. Beside the JNI lib

Re: some problem in tomcat 5.0.25

2004-07-07 Thread archana gupta
Hi , Its the size of the compiled .class file and i'm using runtime JSP includes and Java Bean Regards Archana Gupta QM <[EMAIL PROTECTED]> wrote: On Wed, Jul 07, 2004 at 03:05:26PM +0100, archana gupta wrote: : Its 168 KB after compiling , this because its a single in which different JSP

UnsatisfiedLinkError - JNI

2004-07-07 Thread Josef Henryson
Hi! I get an UnsatisfiedLinkError when trying to System.loadLibrary("foo") from a class instantiated within a Servlet. The library libFoo.jnilib is in a folder within java.library.path and the class loading it is inside a JAR in $CATALINA_HOME/shared/lib. Beside the JNI library is a native libr

RE: Using javax.servlet.Filter to alter HTTP headers (was RE: How can the Server header in an HTTP response be customised?)

2004-07-07 Thread Ian Stevens
> Unless there is a PATCH in bugzilla, then no. OK. Thanks for your help, Tim. Ian. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Using javax.servlet.Filter to alter HTTP headers (was RE: How can the Server header in an HTTP response be customised?)

2004-07-07 Thread Tim Funk
Unless there is a PATCH in bugzilla, then no. -Tim Ian Stevens wrote: The Server header is hardcoded into the Connectors. You can't remove/change it without a PATCH/recompile to org.apache.coyote.http11.Constants That's certainly what I saw when looking at the source. There's no way alter it us

RE: Using javax.servlet.Filter to alter HTTP headers (was RE: How can the Server header in an HTTP response be customised?)

2004-07-07 Thread Ian Stevens
> The Server header is hardcoded into the Connectors. You can't > remove/change it without a PATCH/recompile to > org.apache.coyote.http11.Constants That's certainly what I saw when looking at the source. There's no way alter it using a javax.servlet.Filter and a javax.servlet.HttpServletRespon

Re: Upgrading to Tomcat 5.0--Fixed

2004-07-07 Thread e-Denton Subscriber
Nevermind--I figured this one out. I had saved a copy of my old web.xml, which Tomcat was also trying to load. - Original Message - From: "e-Denton Subscriber" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 11:06 AM Subject: Upgrading to Tom

Re: Using javax.servlet.Filter to alter HTTP headers (was RE: How can the Server header in an HTTP response be customised?)

2004-07-07 Thread Tim Funk
The Server header is hardcoded into the Connectors. You can't remove/change it without a PATCH/recompile to org.apache.coyote.http11.Constants -Tim Ian Stevens wrote: Is it possible to programmatically change the Server header? [...] Surely there is a way to alter the Server header of an HTTP

RE: Using javax.servlet.Filter to alter HTTP headers (was RE: How can the Server header in an HTTP response be customised?)

2004-07-07 Thread Ian Stevens
> > > Is it possible to programmatically change the Server header? [...] > Surely there is a way to alter the Server header of an HTTP > response, if only for security reasons. I can't be the only > person who wishes to do this. I would appreciate any > suggestions as to how this can be acco

Tomcat 5 integration question

2004-07-07 Thread Yu, John
Hi, I'm planning on doing some integration work with Tomcat 5, in which I would like to perform actions like "start" (both server and application), "stop", "deploy", "remove" programmatically. What is the best approach to achieve this? I know I can send a request to manager application to deploy

Re: OT? Netbeans v Eclipse v Visual Age for Java

2004-07-07 Thread epyonne
I have not used NetBean but my colleagues do. It is very different from Eclipse. Personally, I prefer Eclipse over NetBean. - Original Message - From: "Sternbergh, Cornell" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 11:49 AM Subject: O

RE: Integrating Tomcat and IIS

2004-07-07 Thread Januski, Ken
Many, many people have had problems with this and a search of the archives may help. I do know that I read your lengthy message but didn't really see anything that was helpful in terms of pointing out the error. Having gone through this a number of times myself I also understand your frustration. B

Re: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-07 Thread Vy Ho
I have used Java for both client, server, GUI apps, and clients haven't complaint about speed or look and feel. For the tag libs argument that web designers will have easier time with it than java, good luck! They have to learn them anyway to get things to work, and it's no different. Saying

Apache Tomcat &JK connector

2004-07-07 Thread adamk1
I hope that people on this list can help me. I have been trying to install Apache and Tomcat on a Solaris 9 machine. I have had success up to the point of apache and tomcat working. I am working on getting the JK connector to work. I was using the documentation provided at: http://johnturner

Re: Fwd: debug connection pool

2004-07-07 Thread Emerson Cargnin
So share your finding :) Hans Wichman wrote: Hi, found it, sorry ! I had been searching in all the wrong directions, but the obvious one grtz Hans Date: Wed, 07 Jul 2004 09:59:18 +0200 To: [EMAIL PROTECTED] From: Hans Wichman <[EMAIL PROTECTED]> Subject: debug connection pool Hi, does anyone kn

OT? Netbeans v Eclipse v Visual Age for Java

2004-07-07 Thread Sternbergh, Cornell
Hi Saw the references to Eclipes, and then Netbeans. I know that this may be a bit off topic, please forgive me... We use Visual Age for Java (VAJ) at work, with Websphere app server and Domino HTTP server (don't ask why;-). I'm planning on using Tomcat/Eclipse at home as an exercise for the st

Re: some problem in tomcat 5.0.25

2004-07-07 Thread Peter Lin
I remember back in tomcat4 several people discovered that long JSP pages would fail because the file exceeded the limit in javac, or using include directive resulted in a servlet with deeply nested try/catch blocks. what is the exact error you are getting? peter On Wed, 7 Jul 2004 10:09:47 -050

RE: Tomcat5 - LDAP question.

2004-07-07 Thread Dale, Matt
This might be better asked in a Microsoft forum. We use a similar method of authentication but am unsure of the permissions of the searching user. Ta Matt -Original Message- From: Kal Govindu [mailto:[EMAIL PROTECTED] Sent: 07 July 2004 17:03 To: Tomcat Users List (E-mail) Subject: Tomc

RE: Files, paths and permissions

2004-07-07 Thread Jérôme Duval
The thing is that it doesn't seem to want to run as a different user than the one it is configured to run as (LocalSystem) and I have no idea what user this represents (I am in WinXP if someone wants to shine some light). I have these accounts set up: Administrator ASPNET De

debug connection pool

2004-07-07 Thread Hans Wichman
Hi, does anyone know the correct way to debug a database connection pool, eg number of connections left in the pool etc? Or a pointer in the right direction? any help would be appreciated! thanks! Hans - To unsubscribe, e-mail: [

Re: compressableMimeTypes (extra info)

2004-07-07 Thread Ronald Klop
I forgot to mention I'm running Tomcat 5.0.25 on Debian Linux with Sun JDK 1.4.2. Ronald. On Tue Jul 06 15:39:27 CEST 2004 Ronald Klop <[EMAIL PROTECTED]> wrote: Hello, I have put this in my server.xml. compression="on" compressableMimeTypes="text/html,text/xml,text/plain,text/javascript,text/css"

RE: Tomcat 5.0 and JavaMail

2004-07-07 Thread Dale, Matt
I've found that you also need activation.jar for JavaMail, do you have this in common/lib too? Ta Matt -Original Message- From: e-Denton Subscriber [mailto:[EMAIL PROTECTED] Sent: 07 July 2004 15:49 To: Tomcat Users List Subject: Tomcat 5.0 and JavaMail I had JavaMail working in Tomca

Fwd: debug connection pool

2004-07-07 Thread Hans Wichman
Hi, found it, sorry ! I had been searching in all the wrong directions, but the obvious one grtz Hans Date: Wed, 07 Jul 2004 09:59:18 +0200 To: [EMAIL PROTECTED] From: Hans Wichman <[EMAIL PROTECTED]> Subject: debug connection pool Hi, does anyone know the correct way to debug a database connec

Upgrading to Tomcat 5.0

2004-07-07 Thread e-Denton Subscriber
I have another problem. webapps contains both an e-Denton.war file and an already expanded .war file (e-Denton directory). My Context (e-Denton.xml) is in Tomcat 5.0\conf\Catalina\localhost. Any idea why I would be getting this message? "StandardHost[localhost]: Error deploying application at cont

Re: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-07 Thread Harry Mantheakis
Hello > I agree that I find taglibs impossible to understand. Tag libraries are not actually that difficult, and offer many advantages. I just thought I would mention that, for the record :-) Harry Mantheakis London, UK - T

Re: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-07 Thread Frank Burns
The problem with that approach, Ivan, is that your Christian Science friend may not spot the sign when presented with it. Some people are like that. They might not see a sign even if it consisted of getting slapped around the face with a wet fish (or two wet fishes and five loaves, for that matter)

Tomcat5 - LDAP question.

2004-07-07 Thread Kal Govindu
Hi All, Is there a way of setup a user account in Active Directory that can query other user info and does not have permission to update that information. Background: I am trying to setup LDAP authentication on Tomcat5 connecting to Active Directory. When I bind to active directory as common u

Tomcat 5.0.19 dies unexpectedly

2004-07-07 Thread Pete Stokes
Hi, We've been using Tomcat 5.0.19 for a long time with no problems, yesterday, whilst the application was up for almost 3 hours, catalina.out suddenly reported that "Address already in use:8080" and the server process died. On other server, we do have multiple Tomcats, and this normally happen

RE: Files, paths and permissions

2004-07-07 Thread Jérôme Duval
Thanks for the pointer! Not running it as a service made it worked. Guess I'll have to stick to that from now on. -Original Message- From: QM [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 5:21 PM To: Tomcat Users List Subject: Re: Files, paths and permissions On Tue, Jul 06, 200

Integrating Tomcat and IIS

2004-07-07 Thread Tom Burke
I sent a long email to the list on Tuesday asking for help with problems I'm having intergating Tomcat with IIS. Sadly, there were no replies. My email was rather long - lots of examples, config file extracts, etc - so maybe recipients found it hard to digest. So I'll recast it as a shorter reques

Re: RE: Tomcat 5.0.19 dies unexpectedly

2004-07-07 Thread Kamaleshwaran Sivalingam
 Hi, Did you check the port setting in all the "server.xml" files?. probably the port serting of another tomcat was set to "8080" kamaleshwaran Sivalingam On Wed, 07 Jul 2004 Dale,Matt wrote : > >It looks like someone tried to start the same tomcat again. Are you sure that no-one could hav

Re: Best practice setup

2004-07-07 Thread Kunthar
Hello, 1. What is the percentage of pure html requests of your web app? 2. What is the database usage of your web app? 3. Is there any huge queries running during users sessions? 4. What is the hardware profile of your server? Solution; 1. If you have reasonable values for all of 4 items above you

Re: Re: Trouble starting Tomcat4.1.18 on linux.

2004-07-07 Thread Kamaleshwaran Sivalingam
Hi, The error was "Bind error: Address already in use". I solved the problem. The port setting in my "server.xml" file was set to "80" and not "8080". Apache server is already running on port 80. So I changed the port setting to "8080". Now i get the home page when i hit "http://localho

Re: mod_jk2 ./configure problem/query

2004-07-07 Thread Chong Yu Meng
Tim Wills wrote: Sorry to say but I have gone through the whole process 3 times now (including re-installing Redhat itself) and I still get error 503 Service Temporarily Unavailable. I reckon it must be a permissions problem but where? I have tried the following: chmod 666 jk2.socket I tried changi

see Tomcat deployed applications throw JMX

2004-07-07 Thread Younes El Moumen
I want to see deployed applications on Tomcat thwrow JMX. Can anybody help me? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat 5.0.19 dies unexpectedly

2004-07-07 Thread Dale, Matt
It looks like someone tried to start the same tomcat again. Are you sure that no-one could have done this? -Original Message- From: Pete Stokes [mailto:[EMAIL PROTECTED] Sent: 07 July 2004 14:34 To: Tomcat Users List Subject: Tomcat 5.0.19 dies unexpectedly Hi, We've been using Tomcat

Re: Files, paths and permissions

2004-07-07 Thread QM
On Wed, Jul 07, 2004 at 09:40:21AM -0400, J?r?me Duval wrote: : Thanks for the pointer! Not running it as a service made it worked. Guess : I'll have to stick to that from now on. ... or you could find out what user owns/runs services and grant that user write-access to the folder. That would be

Re: some problem in tomcat 5.0.25

2004-07-07 Thread QM
On Wed, Jul 07, 2004 at 03:05:26PM +0100, archana gupta wrote: : Its 168 KB after compiling , this because its a single in which different JSP are included depending upon the condition . This works fine in 5.0.16 . Is this the size of the compiled .class file or the generated .java source

Tomcat 5.0 and JavaMail

2004-07-07 Thread e-Denton Subscriber
I had JavaMail working in Tomcat 4, but in Tomcat 5, I am having trouble. I know it's something simple, perhaps you can see the problem. Mail.jar is in Tomcat 5.0\common\lib. I am getting this error: "javax.naming.NamingException: Cannot create resource instance:" Using this context in Tomcat 5.

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-07 Thread PATTUS Jean-Philippe
very constructive!!! please could you don't use this list for yours great ideas We understood that you don't want to use jstl, it's your problem. -Message d'origine- De : Ivan Jouikov [mailto:[EMAIL PROTECTED] Envoyà : mercredi 7 juillet 2004 09:56 à : 'Tomcat Users List' Objet : RE

RE: howto disable webdav extensions / methods?

2004-07-07 Thread Patrick Glennon
You were right. I guess I didn't restart or something, but aftern undeploying the webdav servlet, propfind et al now return 501s... Thanks! -Patrick -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 4:51 PM To: 'Tomcat Users List' Subject: RE: h

RE: some problem in tomcat 5.0.25

2004-07-07 Thread archana gupta
Hi Santos, Its 168 KB after compiling , this because its a single in which different JSP are included depending upon the condition . This works fine in 5.0.16 . Regards Archana "SANTOS, DANIEL (SBCSI)" <[EMAIL PROTECTED]> wrote: Forgive the simplicity of my question, but how large is t

Mysterious Exception while server startup

2004-07-07 Thread Martin Grüneberg
Hello, I run here a tomcat 5.0.27 server on windows 2000 with jsdk1.4.2-04. The following happens rarely and it seems only to happen when I start Tomcat in Eclipse 3 (Sysdeo 3.0.0 alpha1 plugin). After processing all contextes on startup I get sometimes the following Exception: WARNUNG: Error re

Re: how many sessions in use?

2004-07-07 Thread Tim Funk
The manager app will tell you. -Tim Stephen Charles Huey wrote: Is there any way to find out how many sessions are currently in use? I'm ultimately trying to get at how much memory is being used per session...if there's no way to really get at this without a profiler tool, do any of you use a part

Hi

2004-07-07 Thread tomcat-user
Important! ** ** WARNING: WinProxy has detected a virus in file attached to this e-mail message! The attachment has been automatically removed to protect your network. WinProxy Administr

RE: mod_jk2 ./configure problem/query

2004-07-07 Thread Tim Wills
Sorry to say but I have gone through the whole process 3 times now (including re-installing Redhat itself) and I still get error 503 Service Temporarily Unavailable. I reckon it must be a permissions problem but where? I have tried the following: chmod 666 jk2.socket I tried changing the path to

RE: Importing Tomcat 5.0 webapp into Eclipse 3.0?

2004-07-07 Thread Dale, Matt
I havent actually imported a project into eclipse I dont think but if you create a new tomcat project from within eclipse and point it at your webapp then it all just falls into place. Ta Matt On 7/7/2004 4:38 AM, Januski, Ken wrote: > Thanks Matt, > > I'm using the Sysdeo plugin and that go

Limited Database Pool Connection

2004-07-07 Thread Bachler, Elisabeth (Elisabeth)
Hello, I defined a database connection that uses a pool connection. Everything is working well. Now I had a routing problem that prevented any database connection (with a SQPNestedException fired). The exception fired after a long time is there a way of setting the connection limit, so it does

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-07 Thread Ivan Jouikov
> Subject: Re: I've officially decided that JSTL is one of the worstthingsto > ever happen > > Oh, man, ... > > > Ok let's settle this argument simple. > > > > Tonight, I'll ask my Christian Science friend to talk to Jesus, > > Why not ask Jesus yourself? Prayer is open to anyone, and is not lim