SessionCMPClient.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:3k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Created on 1999-5-18
  3.  */
  4. package testClient;
  5. import java.rmi.RemoteException;
  6. import java.util.ArrayList;
  7. import java.util.Hashtable;
  8. import java.util.Iterator;
  9. import javax.ejb.CreateException;
  10. import javax.naming.InitialContext;
  11. import javax.naming.NamingException;
  12. import cmp.ItemData;
  13. import cmp.SupplierData;
  14. import bmp.CustomerData;
  15. import bmp.ManagerData;
  16. /**
  17.  * @author 28-9
  18.  *
  19.  * TODO To change the template for this generated type comment go to
  20.  * Window - Preferences - Java - Code Generation - Code and Comments
  21.  */
  22. public class SessionCMPClient {
  23. private stateless.StoreAccessHome getHome() throws NamingException {
  24. return (stateless.StoreAccessHome) getContext().lookup(
  25. stateless.StoreAccessHome.JNDI_NAME);
  26. }
  27. private InitialContext getContext() throws NamingException {
  28. Hashtable props = new Hashtable();
  29. props.put(InitialContext.INITIAL_CONTEXT_FACTORY,
  30. "org.jnp.interfaces.NamingContextFactory");
  31. props.put(InitialContext.PROVIDER_URL, "jnp://127.0.0.1:1099");
  32. // This establishes the security for authorization/authentication
  33. // props.put(InitialContext.SECURITY_PRINCIPAL,"username");
  34. // props.put(InitialContext.SECURITY_CREDENTIALS,"password");
  35. InitialContext initialContext = new InitialContext(props);
  36. return initialContext;
  37. }
  38. public void testBean() {
  39. Iterator itemsIterator=null;
  40. ArrayList items=null;
  41. try {
  42. stateless.StoreAccess myBean = getHome().create();
  43. //--------------------------------------
  44. //This is the place you make your calls.
  45. //System.out.println(myBean.callYourMethod());
  46. System.out.println("Request from client : ");
  47. String userID = myBean.loginUser("danny", "swdandy");
  48. System.out.println("Reply from Server: Your userid is " + userID );
  49. CustomerData cd = myBean.getCustomerData(userID); 
  50. System.out.println ("Andy your details with MyStore are " + cd );
  51. String suppID =   myBean.loginUser("TUSX","PASSWD");
  52. System.out.println("Reply from Server: Your supplierID is " + suppID );
  53. SupplierData sd = myBean.getSupplierData(suppID);
  54. System.out.println ("TUSX your details with MyStore are  " + sd );
  55. String mgrID =   myBean.loginUser("RUSTY","PASSWD");
  56. System.out.println("Reply from Server: Your mgrid is " + mgrID );
  57. ManagerData md = myBean.getManagerData(mgrID);
  58. System.out.println ("Rusty your details with MyStore are  " + md );
  59. System.out.println("Manager Request : List items out of stock ");
  60. items = myBean.getOutOfStockItems();
  61. itemsIterator = items.iterator();
  62. System.out.println("List Of Out Of stock Items ");
  63. while ( itemsIterator.hasNext() ) {
  64. ItemData itemData= ( ItemData ) itemsIterator.next();
  65. System.out.println ("Item Data " + itemData );
  66. }
  67. } catch (RemoteException e) {
  68. e.printStackTrace();
  69. } catch (CreateException e) {
  70. e.printStackTrace();
  71. } catch (NamingException e) {
  72. e.printStackTrace();
  73. }
  74. }
  75. public static void main(String[] args) {
  76. SessionCMPClient test = new SessionCMPClient();
  77. test.testBean();
  78. }
  79. }