java.security.AccessControlException:拒绝访问(“java.net.SocketPermission”“127.0.0.1:1099”“connect,resolve”)
我的服务器端运行正常,服务器上没有错误..当我运行客户端代码时,我得到此访问被拒绝(“java.net.SocketPermission”“127.0.0.1:1099”“connect,resolve” )错误。
请任何专家帮助我:(
这是我的客户代码
/**
*
* @author saqibhussain
*/
public class ChatClient extends UnicastRemoteObject implements ChatClientIF, Runnable {
public ChatClient() throws RemoteException {
}
private ChatServerIF chat;
private String name = null;
protected ChatClient(String name, ChatServerIF chat) throws RemoteException { this.name = name;
this.chat = chat;
chat.RegisterChatClient(this);
}
public void retrieveMessage(String msg) throws RemoteException {
System.out.println(msg);
}
public void run() {
Scanner scaner = new Scanner(System.in);
String message;
while (true) {
try {
message = scaner.nextLine();
chat.broadcastMessage(name + " : " + message);
} catch (RemoteException ex) {
Logger.getLogger(ChatClient.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
public static void main(String[] args) throws NotBoundException, MalformedURLException, RemoteException {
System.setSecurityManager(new RMISecurityManager());
try {
String url = "rmi://localhost/RMIChatServer";
ChatServerIF remoteObject = (ChatServerIF) Naming.lookup(url);
System.out.println("Got remote object");
new Thread(new ChatClient(args[0], remoteObject)).start();
} catch (Exception e) {
System.out.println(e);
}
}
}
答案 0 :(得分:1)
向客户端应用程序添加安全策略。 您可以从此处下载示例政策:http://www.comp.lancs.ac.uk/~weerasin/csc253/tutorials/week8code/client.policy
之后使用以下vm参数启动客户端
java -Djava.security.policy==client.policy
在生产环境中要小心,因为给定的策略授予了权限 您的客户执行的任何操作。
答案 1 :(得分:0)
您已经定义了SecurityManager
,但您没有授予自己足够的权限来执行您的代码。您需要自己编写policy file并在通过-Djava.security.policy=...
启动时将其指定给JVM。
或者,只需删除安全管理器即可。除非您使用RMI代码库功能,否则不需要它。