Re: Setting the Session Id length

2004-06-16 Thread Tim Funk
In your Host or Context declaration, you'll need to create to add a element 
to declare your session  manager. Then add the property: sessionIdLength=42 
or whatever length you'd like. It might be as simple as:

  Manager sessionIdLength=42/
-Tim
James Maidment wrote:
Hi,
 
Fairly recently, methods appeared in org.apache.catalina.session.ManagerBase (setSessionIdLength()) to allow variation of the Session Id length, however I can't find any way of actually calling these methods.  Can anyone tell me how this parameter should be set? (I'm using the embedded Tomcat within JBoss)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Setting the Session Id length

2004-06-16 Thread Benjamin Armintor
Setters on Catalina components are usually reflected in attributes in
the corresponding server.xml element. 

Benjamin J. Armintor
Operations Systems Specialist
ITS-Systems: Mainframe Group
University of Texas - Austin
tele: (512) 232-6562
email: [EMAIL PROTECTED]
 


-Original Message-
From: James Maidment [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 16, 2004 9:40 AM
To: [EMAIL PROTECTED]
Subject: Setting the Session Id length


Hi,
 
Fairly recently, methods appeared in
org.apache.catalina.session.ManagerBase (setSessionIdLength()) to allow
variation of the Session Id length, however I can't find any way of
actually calling these methods.  Can anyone tell me how this parameter
should be set? (I'm using the embedded Tomcat within JBoss)
 
Many thanks,
  James

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Re: Setting the Session Id length

2004-06-16 Thread Jérôme Duval
To avoid having to type in -classpath . when you use your JVM add ;.;
after C:\j2sdk1.4.2_01\bin.

The classpath is the variable your JVM uses to figure out where it can find
the classes that it is supposed to use. By adding . you tell it to look in
the directory you are currently in. The semi-colons are used to separate
multiple entries in system variable values. It's a good idea to add it to
all of your entries.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]