RE: Tomcat problem on a multiple CPU system

2008-05-05 Thread Gilbert, Antoine
Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: 5 mai 2008 07:26 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU system Gilbert, Antoine wrote: > I open 8 IE on a remote computer, basically once a JSP is called, the > browser is just waiting th

RE: Tomcat problem on a multiple CPU system

2008-05-05 Thread Gilbert, Antoine
be 8 separate processes if you launch each separately from Explorer (ie the Start button or desktop shortcut) and not use the new window menu option or ctrl-n. --David Gilbert, Antoine wrote: > Well, each process is a image rendering process. > > But my point is, if I launch 8 threads

RE: Tomcat problem on a multiple CPU system

2008-05-04 Thread Gilbert, Antoine
y well... Antoine -Original Message----- From: Gilbert, Antoine Sent: 4 mai 2008 20:20 To: Tomcat Users List Subject: RE: Tomcat problem on a multiple CPU system Well, each process is a image rendering process. But my point is, if I launch 8 threads directly in a JVM outside of tomcat, it run fast

RE: Tomcat problem on a multiple CPU system

2008-05-04 Thread Gilbert, Antoine
ies are generated and maybe profile what your app. is doing. HTH Alan Chaney Gilbert, Antoine wrote: > Hi > > > > I have a 2x quad core (8 cpu units) server. > > > > If I start a java program and this one is launching (at the same time) 8 > thread do

Tomcat problem on a multiple CPU system

2008-05-04 Thread Gilbert, Antoine
Hi I have a 2x quad core (8 cpu units) server. If I start a java program and this one is launching (at the same time) 8 thread doing some CPU intensive jobs, all the CPU are used at 100%, and that's what I'm expecting.. But, if I am using tomcat, and I call a servlet 8 times to process

RE: Undeploying problem with Tomcat 5.5 and Log4J

2007-01-03 Thread Gilbert, Antoine
Users List Subject: Re: Undeploying problem with Tomcat 5.5 and Log4J Gilbert, Antoine wrote: > I deploy an application WAR on a Tomcat 5.5 instance. This application > use Log4j (via commons-logging) and create some logs in a file within > the related Web app directory (/webapps/myWebApp

Undeploying problem with Tomcat 5.5 and Log4J

2007-01-03 Thread Gilbert, Antoine
Hi list I deploy an application WAR on a Tomcat 5.5 instance. This application use Log4j (via commons-logging) and create some logs in a file within the related Web app directory (/webapps/myWebApp). The file is defined by a file appender tag in my log4j.xml file. The problem is when I unde

commons-digester.jar locking issues using struts default library

2006-11-27 Thread Gilbert, Antoine
Hi list, I have a Web application under NetBeans 5.5 using default Struts library 1.2.9 with the built-in Tomcat 5.5.17 For some reasons the file commons-digester seem to always be locked by this Tomcat; I can't "clean and build" my application while Tomcat is running. One more thing an

RE: DataSourceRealm vs DataSource

2006-11-15 Thread Gilbert, Antoine
No matter, found my problem, had to set localDataSource="true" in my realm Have a nice day! -Original Message----- From: Gilbert, Antoine Sent: November 15, 2006 3:22 PM To: Tomcat Users List Cc: Siino, Daniel Subject: DataSourceRealm vs DataSource Hi I have a data source

DataSourceRealm vs DataSource

2006-11-15 Thread Gilbert, Antoine
Hi I have a data source and a data source realm using this data source. Both are defined in the context. It seems the realm is unable to reference the data source. I get this error message: ERROR [org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/pushnse e-trunc]][15-11-2006 1

RE: jsessionid

2006-05-26 Thread Gilbert, Antoine
don't recall it being all lowercase. On 5/26/06, Gilbert, Antoine <[EMAIL PROTECTED]> wrote: > > Tried these without success > > http://myurl;jsessionid=xx?otherparams > http://myurl?jsessionid=xx&otherparams > http://myurl?otherparams;jsessionid=xx > > >

RE: jsessionid

2006-05-26 Thread Gilbert, Antoine
onid should not the jsessionid be just another parameter like the rest? have you tried this? http://myurl?jsessionid=xx&otherparams On 5/26/06, Gilbert, Antoine <[EMAIL PROTECTED]> wrote: > > Hi > > > > I have a problem related to http sessions. > > > > I hav

jsessionid

2006-05-26 Thread Gilbert, Antoine
Hi I have a problem related to http sessions. I have an image tag in a page. Using JavaScript I change the source of the image and calling a servlet hosted by tomcat 5. In this particular case I have to specify the jsessionid in the url to bind the call to an existing session. http://my

system.out

2006-03-24 Thread Gilbert, Antoine
How to redirect system.out and system.err to a file to a specific location and with a specific name ?

common-compress

2006-02-21 Thread Gilbert, Antoine
Hi Where I can find the jar of this project? Unable to find it there http://jakarta.apache.org/commons/sandbox/compress/

file servlet

2006-02-05 Thread Gilbert, Antoine
I'm using tomcat 5.5 Any way to make tomcat able to serve zip and video files ? without having to write code

RE: Tomcat / LDAPS

2005-11-21 Thread Gilbert, Antoine
I tried last week to make my tomcat auth with LDAP. I installed Sun One directory for this test. Basically it's working, it authenticate user, I see on the Sun One logs the request, etc... and the user become available in request.getRemoteUser() etc..., my only problem is the mapping of roles, I

JNDIRealm (LDAP)

2005-11-11 Thread Gilbert, Antoine
Hi I am testing LDAP with a JNDI realm connecting to my sample SunOne directory server. Basicly I have this in my context ldap://dev21.korem.local:59004"; userPattern="uid={0},dc=korem,dc=local" userRoleName="nsroledn" roleName="cn"/> The bindi