01: // SessClient.java
02: // mini Client for accessing bean Sess
03:
04: package samplehttp.beans;
05:
06: import java.rmi.RemoteException;
07: import java.util.Collection;
08: import javax.naming.Context;
09: import javax.naming.InitialContext;
10: import javax.naming.NamingException;
11: import javax.rmi.PortableRemoteObject;
12:
13: /**
14: *
15: */
16: public class SessClient {
17:
18: static Context ctx = null;
19: static SessHome home = null;
20:
21: public static void main(String[] arg) {
22:
23: // Get InitialContext
24: try {
25: ctx = new InitialContext();
26: } catch (NamingException e) {
27: e.printStackTrace();
28: System.exit(2);
29: }
30:
31: // Lookup bean home
32: String bName = "sessSessSLRHome";
33: try {
34: home = (SessHome) PortableRemoteObject.narrow(ctx
35: .lookup(bName), SessHome.class);
36: } catch (Exception e) {
37: e.printStackTrace();
38: System.exit(2);
39: }
40:
41: // ...
42: }
43: }
|