WebLogic Server 6.0 Code Examples, BEA Systems, Inc.

examples.wlec.ejb.simpapp
Class Client

java.lang.Object
  |
  +--examples.wlec.ejb.simpapp.Client

public class Client
extends java.lang.Object

This class illustrates using a stateless SessionBean that calls an IIOP handler which in turn calls a CORBA Simpapp server. This class does the following:

You'll need to add an IIOP pool to your weblogic.properties file:

# Demo IIOP pool

   weblogic.CORBA.connectionPool.simplepool=\
     appaddrlist=//your host name:port # where the simpapp is running,\
     failoverlist=//your host name:port # where the simpapp is running,\
     minpoolsize=1,\
     maxpoolsize=3,\
     username=your user name,\
     userrole=role of the user,\
     domainname=simpapp
 
You'll need to deploy the EJB to your weblogic.properties file:
# Demo ejb deployment 
   weblogic.ejb.deploy=c:/weblogic/classes/wlec_ejb_simpapp.jar
 

Author:
Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved.

Field Summary
(package private) static java.lang.String password
           
(package private) static java.lang.String url
           
(package private) static java.lang.String user
           
 
Constructor Summary
Client()
           
 
Method Summary
static javax.naming.Context getInitialContext()
          Gets an initial context.
static void main(java.lang.String[] args)
          Runs this example from the command line.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

password

static java.lang.String password

url

static java.lang.String url

user

static java.lang.String user
Constructor Detail

Client

public Client()
Method Detail

getInitialContext

public static javax.naming.Context getInitialContext()
                                              throws java.lang.Exception
Gets an initial context.
Returns:
Context
Throws:
java.lang.Exception - if there is an error in getting a context

main

public static void main(java.lang.String[] args)
Runs this example from the command line. For example:

& java examples.wlec.ejb.simpapp.Client WebLogicURL user password

The parameters are optional, but if any are supplied, they are interpreted in this order:

Parameters:
WebLogicURL - URL of the server such as "t3://localhost:7001"
user - Username, default null
password - User password, default null. It should be at least 8 characters

Documentation is available at
http://e-docs.bea.com/wls/docs60

Copyright © 2000 BEA Systems, Inc. All Rights Reserved.