You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2003/02/03 23:00:43 UTC

DO NOT REPLY [Bug 16106] - IllegalAccessException at next startup after Webapps:Aministration

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16106>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16106

IllegalAccessException at next startup after Webapps:Aministration





------- Additional Comments From Richard.June@hp.com  2003-02-03 22:00 -------
We've seen this same problem on Tru64 UNIX.  Tracked it down to a bogus
string comparison in org/apache/catalina/core/StandardServer.java, here's
a fix:

*** StandardServer.java.orig    Mon Feb  3 16:01:21 2003
--- StandardServer.java    Mon Feb  3 16:02:59 2003
***************
*** 930,936 ****
      private boolean isSkippable(String className) {

          for (int i = 0; i < skippables.length; i++) {
!             if (skippables[i] == className) {
                  return (true);
              }
          }
--- 930,936 ----
      private boolean isSkippable(String className) {

          for (int i = 0; i < skippables.length; i++) {
!             if (skippables[i].equals(className)) {
                  return (true);
              }
          }

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org