0 Replies Latest reply on Jul 9, 2007 4:49 PM by lokeya

    Servlet + RMI call Issue.

    lokeya

      I am using JBoss as my Application server and trying to make an RMI call from that. Facing following exception. I googled and understood that its something to do with the Java 2 security issue. I tried to overcome that using the following lines of code in my servlet(RMI client) and RMI server

      System.setProperty("java.security.policy","policy.all");
      System.setSecurityManager(new RMISecurityManager());

      where i grant AllPermissions. Even then facing the following issue. Is there some JBoss configuration which needs to be changed to get this working?

      Help Appreciated.

      java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:2000 connect,resolve)
      at java.security.AccessControlContext.checkPermission(AccessControlContext.java :264)
      at java.security.AccessController.checkPermission(AccessController.java:427)
      at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)