javassist.tools.rmi

Class ObjectImporter

public class ObjectImporter extends Object implements Serializable

The object importer enables applets to call a method on a remote object running on the Webserver (the main class of this package).

To access the remote object, the applet first calls lookupObject() and obtains a proxy object, which is a reference to that object. The class name of the proxy object is identical to that of the remote object. The proxy object provides the same set of methods as the remote object. If one of the methods is invoked on the proxy object, the invocation is delegated to the remote object. From the viewpoint of the applet, therefore, the two objects are identical. The applet can access the object on the server with the regular Java syntax without concern about the actual location.

The methods remotely called by the applet must be public. This is true even if the applet's class and the remote object's classs belong to the same package.

If class X is a class of remote objects, a subclass of X must be also a class of remote objects. On the other hand, this restriction is not applied to the superclass of X. The class X does not have to contain a constructor taking no arguments.

The parameters to a remote method is passed in the call-by-value manner. Thus all the parameter classes must implement java.io.Serializable. However, if the parameter is the proxy object, the reference to the remote object instead of a copy of the object is passed to the method.

Because of the limitations of the current implementation,

All the exceptions thrown by the remote object are converted into RemoteException. Since this exception is a subclass of RuntimeException, the caller method does not need to catch the exception. However, good programs should catch the RuntimeException.

See Also: AppletServer RemoteException Viewer

Constructor Summary
ObjectImporter(Applet applet)
Constructs an object importer.
ObjectImporter(String servername, int port)
Constructs an object importer.
Method Summary
Objectcall(int objectid, int methodid, Object[] args)
Calls a method on a remote object.
ObjectgetObject(String name)
Finds the object exported by a server with the specified name.
ObjectlookupObject(String name)
Finds the object exported by the server with the specified name.
voidsetHttpProxy(String host, int port)
Sets an http proxy server.

Constructor Detail

ObjectImporter

public ObjectImporter(Applet applet)
Constructs an object importer.

Remote objects are imported from the web server that the given applet has been loaded from.

Parameters: applet the applet loaded from the Webserver.

ObjectImporter

public ObjectImporter(String servername, int port)
Constructs an object importer.

If you run a program with javassist.tools.web.Viewer, you can construct an object importer as follows:

See Also: Viewer

Method Detail

call

public Object call(int objectid, int methodid, Object[] args)
Calls a method on a remote object. It sends a POST request to the server (via an http proxy server if needed).

This method is called by only proxy objects.

getObject

public Object getObject(String name)
Finds the object exported by a server with the specified name. If the object is not found, this method returns null.

Parameters: name the name of the exported object.

Returns: the proxy object or null.

lookupObject

public Object lookupObject(String name)
Finds the object exported by the server with the specified name. It sends a POST request to the server (via an http proxy server if needed).

Parameters: name the name of the exported object.

Returns: the proxy object.

setHttpProxy

public void setHttpProxy(String host, int port)
Sets an http proxy server. After this method is called, the object importer connects a server through the http proxy server.
Javassist, a Java-bytecode translator toolkit.
Copyright (C) 1999-2006 Shigeru Chiba. All Rights Reserved.