-
error:"java.rmi.NotBoundException: Server"
I am developing a applet for execute remote with RMI.
But when I try to execute the applet in the client it happens the following error=
"java.rmi.NotBoundException: Server"
my code client is:
public class ClientInterface extends UnicastRemoteObject implements RMI {
String contexto;
public ClientInterface()throws RemoteException{
super();
}
public static void main(String args[]) {
if(System.getSecurityManager() == null ){
System.setSecurityManager(new RMISecurityManager()); }
try {
ClientInterface obj = new ClientInterface();
Naming.rebind("//ip_do_servidor/Server",obj);
System.out.println("ServerInterface bound in registry");}
catch(Exception e){
System.out.println("Server err: "+ e.getMessage());
e.printStackTrace();}
}
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
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks