Posted By:
zhebin_cong
Posted On:
Thursday, November 26, 2009 04:17 AM
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.