All Examples All WebLogic Enterprise Connectivity Examples EJB Simpapp Example
java.lang.Object | +--examples.wlec.ejb.simpapp.Client
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
| Constructor Summary | |
Client()
|
|
| Method Summary | |
static examples.wlec.ejb.simpapp.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 |
| Constructor Detail |
public Client()
| Method Detail |
public static void main(java.lang.String[] args)
& java examples.wlec.ejb.simpapp.Client WebLogicURL user password
The parameters are optional, but if any are supplied, they are interpreted in this order:
WebLogicURL - URL of the server such as "t3://localhost:7001"user - User name, default nullpassword - User password, default null. It should be at least 8 characters.
public static examples.wlec.ejb.simpapp.Context getInitialContext()
throws java.lang.Exception