-
Aug 12th, 2009, 07:28 PM
#1
Java security Policy for RMI Remoting
I am planning to use Spring Remoting with RMI. I have got all the details I need but I am stuck where do I need to define security policy for the exposed interface.
In my exposed service there is a need to control the access and I need to define policy such as this
grant {
permission java.net.SocketPermission
"*:1024-65535",
"connect,accept,resolve";
permission java.net.SocketPermission
"*:80", "connect";
}
I am not able figure out how these details will get injecting in Spring, which XML tag, which class property etc.
Any help, pointers would be very much appreciated
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules