RE: Tomcat 4.1.18 and symbolic links

2003-01-17 Thread Nick Sharples
Turner, John writes: > > Check the release notes. Symlinks are disabled by default in 4.1.12 and up > for security reasons. > > You will need to specify a Resource in server.xml that calls FileDirContext > with "allowLinking" set to true: > >allowLinking="true" docBase=

RE: Subclassing the Session object

2002-10-18 Thread Nick Sharples
Milt Epstein writes: > On Thu, 17 Oct 2002, Nick Sharples wrote: > > > > > Shapira, Yoav writes: > > > Hi, > > > I don't know the direct answer to your question. > > > > > > But I'm curious as to the use-case that'

RE: Subclassing the Session object

2002-10-18 Thread Nick Sharples
Shapira, Yoav writes: > Hi, > I don't know the direct answer to your question. > > But I'm curious as to the use-case that's requiring you to subclass > HttpSession. As opposed to, for example, binding your (Serializable) > objects to the session? Thanks, We have a clustered environment

Subclassing the Session object

2002-10-18 Thread Nick Sharples
Hi, I'd like to subclass the Session object and I thought there was a configuration option somewhere to allow for this. Does anyone know how to configure which class is used for the Session? Cheers ..Nick -- To unsubscribe, e-mail: For add

Re: Concurrency Problems

2002-10-01 Thread Nick Sharples
Tomcat Forum writes: > Iam having some problems with simutaneous users on the Tomcat 4.0 > server. I have made a java client for testing Tomcat with multiple users. > This client makes multiple threads with each requesting login and then some > page from the tomcat server. But if I se

Re: PROBLEM with Tomcat 4.10 and Jasper

2002-09-11 Thread Nick Sharples
[EMAIL PROTECTED] writes: > Hello, > > I am French, sorry for my englais. > > I have a problem with Tomcat 4.10 and Jasper > I use tags < jsp:include... >. > That functions very well with Tomcat 4.0.x but not with Tomcat 4.10 > I you sendings my log and my file jsp + file compiled

Setting the session principal

2002-05-31 Thread Nick Sharples
Hi Does anyone know a way to set the HttpSession Pricipal from the a context classloader. I can see a set method in the catalina session, but I don't have access to that class. I guess I could use reflection and find the method or just add the Principal to the session on some predefinied key.