From: "Nick Bauman" <[EMAIL PROTECTED]>
> Er, sorry this is probably a stupid question, but why is this not working
> for me?
...
tomcat/src/share/org/apache/tomcat/core/ContextManager.java:335: Method
> setProperty(java.lang.String, java.lang.String) not found in class
> java.lang.System.
> [javac] System.setProperty("tomcat.sessionid.randomclass",
> randomClass);
Because you cannot build and run Tomcat 3.2b6 with JDK 1.1.x, you must use JDK 1.2/1.3
or change line 335 in ContextManager.java from
System.setProperty("tomcat.sessionid.randomclass", randomClass);
to
System.getProperties().put("tomcat.sessionid.randomclass", randomClass);
- Casper Gjerris
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]