01: /*
02: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. U.S.
03: * Government Rights - Commercial software. Government users are subject
04: * to the Sun Microsystems, Inc. standard license agreement and
05: * applicable provisions of the FAR and its supplements. Use is subject
06: * to license terms.
07: *
08: * This distribution may include materials developed by third parties.
09: * Sun, Sun Microsystems, the Sun logo, Java and J2EE are trademarks
10: * or registered trademarks of Sun Microsystems, Inc. in the U.S. and
11: * other countries.
12: *
13: * Copyright (c) 2005 Sun Microsystems, Inc. Tous droits reserves.
14: *
15: * Droits du gouvernement americain, utilisateurs gouvernementaux - logiciel
16: * commercial. Les utilisateurs gouvernementaux sont soumis au contrat de
17: * licence standard de Sun Microsystems, Inc., ainsi qu'aux dispositions
18: * en vigueur de la FAR (Federal Acquisition Regulations) et des
19: * supplements a celles-ci. Distribue par des licences qui en
20: * restreignent l'utilisation.
21: *
22: * Cette distribution peut comprendre des composants developpes par des
23: * tierces parties. Sun, Sun Microsystems, le logo Sun, Java et J2EE
24: * sont des marques de fabrique ou des marques deposees de Sun
25: * Microsystems, Inc. aux Etats-Unis et dans d'autres pays.
26: */
27:
28: package salesrepclient;
29:
30: import java.util.*;
31: import javax.naming.Context;
32: import javax.naming.InitialContext;
33: import javax.rmi.PortableRemoteObject;
34: import salesrep.CustomerRemote;
35: import salesrep.CustomerRemoteHome;
36: import salesrep.SalesRepRemote;
37: import salesrep.SalesRepRemoteHome;
38:
39: public class Main {
40: public static void main(String[] args) {
41: try {
42: Context initial = new InitialContext();
43:
44: Object objref = initial.lookup("ejb/SalesRepBean");
45: SalesRepRemoteHome salesHome = (SalesRepRemoteHome) PortableRemoteObject
46: .narrow(objref, SalesRepRemoteHome.class);
47:
48: objref = initial.lookup("ejb/CustomerBean");
49:
50: CustomerRemoteHome customerHome = (CustomerRemoteHome) PortableRemoteObject
51: .narrow(objref, CustomerRemoteHome.class);
52:
53: CustomerRemote buzz = customerHome.create("844", "543",
54: "Buzz Murphy");
55:
56: Collection c = customerHome.findBySalesRep("543");
57: Iterator i = c.iterator();
58:
59: while (i.hasNext()) {
60: CustomerRemote customer = (CustomerRemote) i.next();
61: String customerId = (String) customer.getPrimaryKey();
62:
63: System.out.println("customerId = " + customerId);
64: }
65:
66: System.out.println();
67:
68: CustomerRemote mary = customerHome.findByPrimaryKey("987");
69:
70: mary.setSalesRepId("543");
71:
72: CustomerRemote x = customerHome.findByPrimaryKey("987");
73: SalesRepRemote janice = salesHome.findByPrimaryKey("543");
74: ArrayList a = janice.getCustomerIds();
75:
76: i = a.iterator();
77:
78: while (i.hasNext()) {
79: String customerId = (String) i.next();
80: CustomerRemote customer = customerHome
81: .findByPrimaryKey(customerId);
82: String name = customer.getName();
83:
84: System.out.println(customerId + ": " + name);
85: }
86:
87: // clean example
88: System.out.println("Remove Buzz Murphy");
89: customerHome.remove("844");
90:
91: System.exit(0);
92: } catch (Exception ex) {
93: System.err.println("Caught an exception.");
94: ex.printStackTrace();
95: }
96: }
97: }
|