RE: help me immediately

2003-07-14 Thread Angus Mezick
1) Please send this request and all future requests to [EMAIL PROTECTED] 2) When wording your request please be aware that you subject line sounds rude to a group of people that have absolutely no requirement to help you but the goodness in their heart. 3) When making help requests please

RE: HELP !!!!!

2003-07-11 Thread Angus Mezick
Um, the file isn't loaded? That looks to be the problem. -Original Message- From: Hamidene, Anis Ben [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 3:43 AM To: [EMAIL PROTECTED] Subject: HELP ! Importance: High Hi, i have configured my application to be

RE: [OFFTOPIC??] RE: dbcp connection and database restart

2003-07-10 Thread Angus Mezick
should reconnect before attempting a call with the connection. Andy -Original Message- From: Angus Mezick [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 15:53 To: Tomcat Users List Subject: [OFFTOPIC??] RE: dbcp connection and database restart Is there a better way of doing

RE: tracking downloads

2003-07-10 Thread Angus Mezick
You mean, like use the items in the access log? You could always create a valve that watches for certain paths and updates a DB/file entry or some such. --Angus -Original Message- From: Mark F [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 2:15 PM To: Tomcat Users List

RE: Memory usage

2003-07-10 Thread Angus Mezick
Checkout jvmstat on http://developers.sun.com/techtopics/emergingtech/ -Original Message- From: Luc Foisy [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 3:19 PM To: Tomcat User List (E-mail) Subject: Memory usage Is there a quick and easy way to figure out the actual

RE: tracking downloads

2003-07-10 Thread Angus Mezick
, will not only need to || record the download but query the database (or in this case || documentum) in order to check for a specific attribute relevant to || the report. || || justin || || || At 11:38 AM 7/10/2003, you wrote: ||| Angus Mezick wrote: You mean, like use

1 Manager 3 hosts.

2003-07-10 Thread Angus Mezick
. Angus Mezick GuideStar - Philanthropic Research Inc. 427 Scotland St. Williamsburg, Virginia 23185 PHONE: (757)299-4631 x35 FAX:(757)229-8912 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www.guidestar.org http://www.guidestar.org

[OFFTOPIC??] RE: dbcp connection and database restart

2003-07-09 Thread Angus Mezick
Is there a better way of doing this? Even if I 'select 1 from TABLE' I don't like the fact that there is an extra DB communication for every connection I get from the pool. I don't know if there are alternatives to this in DBCP but are there any other ways to ask if a connection in a pool is

RE: cookie based session sharing among web apps

2003-07-08 Thread Angus Mezick
Not as far as I can tell from digging through the session manager code. It looks like each context has their own session manager which stores a list of active sessions in a hashmap. I think you are going to have to get rather creative with this one. I.E. create a patch that allows all tomcat

RE: Forward with includes

2003-07-08 Thread Angus Mezick
You can ONLY forward when data hasn't been sent to the web browser. Move your forwards as far up your page as possible or go with a model 2 architecture and put all your logic in a servlet and have the jsp only display data. --Angus -Original Message- From: Nick Stuart [mailto:[EMAIL

RE: How many concurrent session in tomcat 4.1.24

2003-07-07 Thread Angus Mezick
As many as your hardware allows. Requests are mainly CPU limited and sessions are mainly memory/disk space (If you are using a persistent manager that swaps sessions out to disk/DB) limited. This also depends on how complex/big your servlets/jsps/sessions are. You can host a LOT more hello

RE: Storing the SessionID in the Database.

2003-07-03 Thread Angus Mezick
You want to use a VARCHAR. This is because the jvmroute parameter will be appended to the sessionId. This is the suggested table structure for JdbcStore: create table tomcat_sessions ( session_id varchar(100) not null primary key, valid_session char(1) not null, max_inactive int

How to get the container within an instance event?

2003-07-02 Thread Angus Mezick
with how do I change the default port type q's or the one that debates how features should be implemented. Angus Mezick GuideStar - Philanthropic Research Inc. 427 Scotland St. Williamsburg, Virginia 23185 PHONE: (757)299-4631 x35 FAX:(757)229-8912 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED

RE: Retrieving session by the ID

2003-07-01 Thread Angus Mezick
Simha, There are some issues with this. I am currently trying to implement a jdbcsessionmanager and am constantly hitting road blocks. I created my own JdbcSession object and then found out that while HttpRequestBase gets the session from the manager, it does not ask for the façade from the

RE: Retrieving session by the ID

2003-07-01 Thread Angus Mezick
You could create your own session manager to do this. Check out the files in C:\ApacheGroup\Tomcat4.1\src\catalina\src\share\org\apache\catalina\sess ion The findSession method in PersistantSessionManagerBase should help you get started. --Angus -Original Message- From: Simha, Kailas

RE: Insufficient quota

2003-07-01 Thread Angus Mezick
Contact your system admin. They should beable to help. --Angus -Original Message- From: Reis, Tom [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 5:07 PM To: 'Tomcat Users List' Subject: RE: Insufficient quota What can be done about it? Thanks. -Original

RE: problem with clustering using Tomcat 4.1

2003-06-30 Thread Angus Mezick
Check the name of the cookie, the host of the cookie, and the path of the cookie. ESP the path and the host of the cookie. These things need to match. Netscape 7 also have a LiveHTTPHeaders plugin at mozdev.org that is REALLY helpful for debugging this stuff. -Original Message- From:

RE: InstanceListener

2003-06-26 Thread Angus Mezick
file: ClassLoad.zip) Christian Schuster Rudolf Schuster AG Postfach 277 CH - 3000 Bern 11 http://www.rsag.ch ++41 31 348 05 30 Angus Mezick [EMAIL PROTECTED] r.org To [EMAIL PROTECTED

RE: InstanceListener

2003-06-26 Thread Angus Mezick
Yup, saw that message. I also found one written by Craig that had the syntax I was expecting. As for why I am using it, I am writing a JDBC session manager. The sessions are only in memory when actively being used and then stored in the DB. I figure that 1 network transaction per page to the

RE: JDBC Session Manager.

2003-06-25 Thread Angus Mezick
- From: Angus Mezick [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 2:01 PM To: [EMAIL PROTECTED] Subject: JDBC Session Manager. This is NOT about the JDBC Session Store. Ok, now that is out of the way. I am working in an environment with a cisco load balancer

InstanceListener

2003-06-25 Thread Angus Mezick
in the archives except checkins. Thanks! Angus Mezick GuideStar - Philanthropic Research Inc. 427 Scotland St. Williamsburg, Virginia 23185 PHONE: (757)299-4631 x35 FAX:(757)229-8912 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www.guidestar.org http://www.guidestar.org

JDBC Session Manager.

2003-06-24 Thread Angus Mezick
); Angus Mezick GuideStar - Philanthropic Research Inc. 427 Scotland St. Williamsburg, Virginia 23185 PHONE: (757)299-4631 x35 FAX:(757)229-8912 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] www.guidestar.org http://www.guidestar.org

RE: [OT] best hardware config for Tomcat

2003-06-20 Thread Angus Mezick
The dual processor just allows multithreaded environments like tomcat to run better because 2 threads can be running at anyone time instead of just one. This is especially useful because the GC can run in one proc while the other proc still handles request threads. (I think) --Angus

RE: Does Tomcat is OK?

2003-06-19 Thread Angus Mezick
Remember, concurrent users in your case is the number of people that make a request at the EXACT same time. Tomcat should handle this load nicely. -Original Message- From: Cui Xiaojing-a13339 [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 4:28 AM To: [EMAIL PROTECTED]

RE: Can I set up 2 realms for the same server so I can access 2 databases

2003-06-18 Thread Angus Mezick
According to the spec, you can have 0 or 1 realms configured. Now, if you want to rewrite the code that uses the realms for logging people in I think you can use 2 DB's. -Original Message- From: Val T. [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 2:40 PM To: Tomcat Users

RE: Can I set up 2 realms for the same server so I can access 2 databases

2003-06-18 Thread Angus Mezick
Yup, as I read further, it looks like you would need to write your own realm class that will talk to both DB's for you. Sounds like a mess. --Angus -Original Message- From: Angus Mezick Sent: Wednesday, June 18, 2003 2:49 PM To: Tomcat Users List Subject: RE: Can I set up 2 realms

RE: Java Blog

2003-06-16 Thread Angus Mezick
Blojsom.sf.net -Original Message- From: Stephen Ting [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2003 5:53 AM To: [EMAIL PROTECTED] Subject: Java Blog Dear Tomcat users, Where can i get an open source Java blog that i can deploy in my intranet? Thanks Regards,

RE: Mod_jk2 for apache 2.0.43

2003-06-12 Thread Angus Mezick
) with apache 2.0.46, tomcat 4.1.24, j2sdk 1.4.1_03 on windows/2000 professional with latest patches. /mde/ just my two cents . . . . --- Angus Mezick [EMAIL PROTECTED] wrote: Can I use http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2 /release/v 2.0.2/bin/win32/mod_jk2

RE: startup error

2003-06-12 Thread Angus Mezick
Ignore the last advice, set it back to allow forking, and fix your code. At http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api/javax/servlet/jsp/PageContext.html it is stated that handlePageException requires a parameter of type Exception, not of Throwable. Exception implements Throwable but not

RE: Directory Listing in Tomcat 4.1.24

2003-06-12 Thread Angus Mezick
Well, if he got REALLY ambitious he could go edit tomcat itself couldn't he? -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 7:23 AM To: Tomcat Users List Subject: Re: Directory Listing in Tomcat 4.1.24 There is no way to change

RE: Network access

2003-06-12 Thread Angus Mezick
Is local caching an option? Any chance that external machine can somehow serve the information directly? Perhaps using an IFRAME element? --Angus -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 4:57 PM To: 'Tomcat-User List'

RE: JVM Profilers

2003-06-11 Thread Angus Mezick
Jvmstat at http://developers.sun.com/techtopics/emergingtech/ is rather cute. -Original Message- From: Roman Fail [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 4:11 PM To: [EMAIL PROTECTED] Subject: JVM Profilers I am considering purchase of JProfiler, OptimizeIt

RE: [ANN] Apache Tomcat mod_jk 1.2.4 Web Server Connector released

2003-06-11 Thread Angus Mezick
I am guessing that people are still encouraged to use mod_jk2 if you are running apache 2 as your front end to tomcat 4.1.24. -Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 7:59 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL

Mod_jk2 for apache 2.0.43

2003-06-11 Thread Angus Mezick
Can I use http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v 2.0.2/bin/win32/mod_jk2-2.0.43.dll in apache 2.0.46 which has security fixes? Or does this mod need to be recompiled? If so, how? (hopefully with cygwin) Ahh the joys of running on windows.

RE: is session id unique across webapps ?

2003-06-05 Thread Angus Mezick
Hmm, I just read those two thread and I didn't see a final solution. Is getJvmRoute() unique across tomcat instances running on 5 web servers all serving the same app using a JDBC session manager. I know session id is unique within a webapp but what about over a cluster of webapps that don't use

RE: is session id unique across webapps ?

2003-06-05 Thread Angus Mezick
ID + number - therefore always unique. -Original Message- From: Angus Mezick [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2003 9:28 AM To: Tomcat Users List Subject: RE: is session id unique across webapps ? Hmm, I just read those two thread and I didn't see a final

TO SIMONE LEIGH

2003-06-04 Thread Angus Mezick
Please read the whole message(especially the last couple of lines detailing UNSUBSCRIBE instructions) and do it yourself. -Original Message- From: Simone Leigh [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 1:10 PM To: Tomcat Users List Subject: Re: Forms and JSPs

RE: Tomcat Memory leaks!

2003-06-03 Thread Angus Mezick
How would setting fork to true change anything? I thought it was the default setting. Am I wrong or is the documentation in web.xml wrong? --Angus -Original Message- From: Alex Burton [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 12:30 AM To: Tomcat Users List Subject:

RE: sendRedirect and page buffers

2003-05-30 Thread Angus Mezick
How about using a servlet to do all your processing and then forwarding to a jsp from there? Will save you all sorts of headaches like this one. -Original Message- From: chanan braunstein [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 10:43 AM To: [EMAIL PROTECTED] Subject:

RE: What is the maximum session handling capability

2003-05-30 Thread Angus Mezick
It sucks when the answer really is it depends. What hardware are you using? The only want to get a REALLY accurate answer is to use a stress testing tool from http://www.opensourcetesting.org/performance.php and see what happens using your hardware/application set up. Then do some config file

RE: Tomcat Load Balancing w/out Apache

2003-05-29 Thread Angus Mezick
We currently use a jdbc session manager to allow tomcat to share sessions across 5 servers using a pair of local directors. --Angus -Original Message- From: Jeremy Nix [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 8:59 AM To: [EMAIL PROTECTED] Subject: Tomcat Load Balancing

RE: Memory leak on compile

2003-05-29 Thread Angus Mezick
This says fork is true by default. Why then is he seeing a mem leak if he hasn't changed his config (I am assuming this by his lack of knowledge about the howto). --Angus -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 12:01 AM To: Tomcat

Re: Invoking a servlet from JSP

2001-01-23 Thread Angus Mezick
turn your servlet into a taglib or a javabean. I think you are using the wrong approach using a servlet like this. --Angus "Robert E. Baker" wrote: I have a self-contained servlet that returns a single value. I am trying to include the output of this servlet in-line on an HTML/JSP page.

<    1   2