On the rmi bind put the WAS server ip address and respective WAS server Bootstrap_address port.
This is a discussion on how to use the was as rmi server? - Websphere ; i have a code which use the java rmi, the code snippet as following, LocateRegistry.createRegistry(1234); RMILockServer sv = new RMILockServer(); Naming.bind("rmi://127.0.0.1:1234/lock", sv); now i want to migrate the code to a web application in the was6.0, how can i modify ...
i have a code which use the java rmi, the code snippet as following,
LocateRegistry.createRegistry(1234);
RMILockServer sv = new RMILockServer();
Naming.bind("rmi://127.0.0.1:1234/lock", sv);
now i want to migrate the code to a web application in the was6.0, how can i modify the code to use the was6 as the rmi server?
Thanks.
On the rmi bind put the WAS server ip address and respective WAS server Bootstrap_address port.