Probably, that is because the security manager
does not allow Javassist to access rt.jar including
java/lang/Object.class.

Did you install javassist.jar under ${java.home}/lib/ext/ ?
If not, please try.

Otherwise, you can give permissions to javassist.jar to
access rt.jar.  For example, you can include the following
code in your policy file:

grant codeBase "file:/home/you/lib/javassist.jar" {
  |     permission java.security.AllPermission;
  | };

Above, I assume that javassist.jar is under /home/you/lib.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844483#3844483

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3844483


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to