Copyright (C) BULL S.A. 1998-2002.


Compiling this example:
-----------------------
This example is compiled with the others by "ant install" in $JONAS_ROOT/examples.

Running this example:
---------------------
1) Run the JOnAS EJB Server to make beans available to clients:
	
	jonas start 

2) Load the sb.jar if you have not added it in the ejb service descriptors list :

on UNIX:  
	jonas admin -a sb.jar

On Windows:
    jonas admin -a sb.jar

You should see something like this when the bean is loaded :
	
	Op available

3) Run the client program:

on UNIX:
	jclient -cp $JONAS_BASE/ejbjars/sb.jar sb.ClientOp

On Windows:
	jclient -cp %JONAS_BASE%\ejbjars\sb.jar sb.ClientOp
	
In fact, the "-cp" option is not useful here, because classes are found in the CLASSPATH.

4) Stop the jonas server
	jonas stop
