All Examples  All EJB Examples  This Package
  Class examples.ejb.basic.statelessSession.Client
java.lang.Object
   |
   +----examples.ejb.basic.statelessSession.Client
  -  public class Client
  -  extends Object
This class illustrates using a stateless SessionBean:
 -  It creates a trader, and perform repeated buying and selling of shares
 
-  No persistence of state between calls to the SessionBean;
      the client must maintain state between calls
 
-  How to search the JNDI tree for an appropriate container
 
-  Application-defined exceptions
 
  -  Author:
  
-  Copyright (c) 1998 by WebLogic, Inc. All Rights Reserved.
  -  Copyright (c) 1998-1999 by BEA WebXpress. All Rights Reserved.
   
  -   Client() Client()
-  
   
  -   getInitialContext() getInitialContext()
-   Gets an initial context.
  
-   main(String[]) main(String[])
-   Runs this example from the command line.
   
 Client
Client
 public Client()
   
 main
main
 public static void main(String args[])
  -  Runs this example from the command line. Example:
 
 java examples.ejb.basic.statelessSession.Client "t3://localhost:7001" scott tiger
  
 The parameters are optional, but if any are supplied,
 they are interpreted in this order:
  
 
   
- 
    -  Parameters:
    
-  url - URL such as "t3://localhost:7001" of Server
    -  user - User name, default null
    -  password - User password, default null
  
 
 getInitialContext
getInitialContext
 public static Context getInitialContext() throws Exception
  -  Gets an initial context.
   
- 
    -  Returns:
    
-  Context
    
-  Throws: Exception
    
-  if there is
                          an error in getting a Context
  
 
All Examples  All EJB Examples  This Package