Code Modification for INVOKEVIRTUALOBJECT

2005-01-06 Thread Sandy McArthur
finding a cause for this problem would be appreciated. -- Sandy McArthur Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety. - Benjamin Franklin smime.p7s Description: S/MIME cryptographic signature

Has anyone seen: Code Modification for INVOKEVIRTUALOBJECT java/lang/Object/clone

2004-10-18 Thread Sandy McArthur
persisting sessions to disk between restarts but I still get the error even when I've made sure there is no SESSIONS.ser file for tomcat to load. Any help would be much appreciated as this is affecting our production Tomcat 5.0.27 cluster. -- Sandy McArthur He who dares not offend cannot be honest

Re: Has anyone seen: Code Modification for INVOKEVIRTUALOBJECT java/lang/Object/clone

2004-10-18 Thread Sandy McArthur
in our test cluster in the past three weeks which is unfortunate. -- Sandy McArthur Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety. - Benjamin Franklin smime.p7s Description: S/MIME cryptographic signature

How to control the order Valves are invoked?

2004-09-02 Thread Sandy McArthur
of controlling the Valve order or must I find another way to do what I want? -- Sandy McArthur He who dares not offend cannot be honest. - Thomas Paine smime.p7s Description: S/MIME cryptographic signature

Re: WebApp config best practice

2004-06-28 Thread Sandy McArthur
Configure access to the database as a DataSource in Tomcat's configuration and look up the DataSource via JNDI. On Jun 28, 2004, at 7:14 AM, Euan Guttridge wrote: Where is the best practice for deploying your WebApp configuration files? For example a database config file which contains

Re: JNDI and DataSource

2004-04-12 Thread Sandy McArthur
You have a default context right after the wa context that doesn't specify a Resource . Is that what you meant? Sandy On Apr 12, 2004, at 9:44 AM, Freddy Villalba Arias wrote: [...] /ResourceParams /Context Context path= docBase=..\..\Testing debug=5

Re: JNDI and DataSource

2004-04-12 Thread Sandy McArthur
it). HTH. -Mensaje original- De: Sandy McArthur [mailto:[EMAIL PROTECTED] Enviado el: lunes, 12 de abril de 2004 17:32 Para: Tomcat Users List Asunto: Re: JNDI and DataSource You have a default context right after the wa context that doesn't specify a Resource . Is that what you meant? Sandy

Re: Os X

2004-04-11 Thread Sandy McArthur
Sure, I develop on OS X with Tomcat as my test container. 1: Download the tar.gz binary. Try to download it without letting Safari automatically unpack it. 2: open a terminal and run: `gnutar xzf jakarata-tomcat-*.tar.gz` 3: change directory into jakarata-tomcat-* 4: create the file:

Re: Session behaviour across http/https boundary

2004-04-09 Thread Sandy McArthur
a normal http connection. There is nothing which prevents a non-secure cookie from being sent on a https connection. So if you establish a session via http, that same session will get used when you switch to https but possibly not vice versa. Sandy McArthur

How to hack up a custom session tracking method.

2004-04-09 Thread Sandy McArthur
Manager. I haven't tried that yet, but I do like the idea of tracking sessions based on authenticated user's as opposed to a query parameter. Hope someone finds this useful. Sandy McArthur PGP.sig Description: This is a digitally signed message part

Filter.init and JNDI resources

2004-04-07 Thread Sandy McArthur
spec, or am I missing something? Sandy McArthur - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Custom session tracking method?

2004-04-07 Thread Sandy McArthur
for you to write and test... Please continue this discussion on the tomcat-user list, not tomcat-dev. Yoav Shapira Millennium Research Informatics -Original Message- From: Sandy McArthur [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 5:05 PM To: [EMAIL PROTECTED] Subject

Re: Filter.init and JNDI resources

2004-04-07 Thread Sandy McArthur
On Apr 7, 2004, at 10:40 AM, Shapira, Yoav wrote: Me too, though I haven't done it in a while. What tomcat version are you using? Tomcat 5.0.19 on Mac OS X. I just wrote a Filter that uses a JNDI provided datasource. When I try to access that datasource from the Filter.init(...) I get a

Re: Custom session tracking method?

2004-04-07 Thread Sandy McArthur
number must fit in a 4 byte integer in the app. :( After that the session is passed around via the session-num query param. Sandy McArthur On Apr 7, 2004, at 11:33 AM, Mike Curwen wrote: How does your legacy client *first* get the session id ? the client passes session ids as a query parameter

Re: Filter.init and DefaultContext JNDI resources

2004-04-07 Thread Sandy McArthur
After further testing on my using a JNDI resource in the Filter.init(...) method I found that if I use a DefaultContext to link a resource it fails. eg: DefaultContext ResourceLink name=jdbc/test global=jdbc/db type=javax.sql.DataSource/ /DefaultContext But if I link the resource in a