JVM Languages
jrmi.txt
Associated article: Building Secure Java RMI Servers
Tags: Web Development JVM Languages
Published source code accompanying the article by Paulo Marques in which he explains how to use the proxy pattern in conjunction with the Java Authentication and Authorization Service API for building secure Java Remote Method Invocation servers which allow only properly authenticated users access to systems. Also see JRMI.ZIP.
Building Secure Java RMI Servers
by Paulo Marques
Listing One
package authrmi;
/** The interface of the server. */
public interface ServerInterface
extends java.rmi.Remote
{
/** The first operation. @throws SecurityException If the client doesn't
* have permissions for executing this method. */
public ...


