0. Contents

	1. Building the demo
		1.1 Compile the IDL file
		1.2 Compile the Java Client
		1.3 Compile  the Java Server

	2. Running the Insecure Demo
		2.1 Launch the insecure server
		2.2 Launch the insecure client

	3. Running the Secure Demo
		3.1 Launch the secure server
		3.2 Launch the secure client

 --------------------------------


1. Building the demo

	1.1 Compile the IDL file
		> idl2java -root_dir .\Java\ Bank.idl

	1.2 Compile the Java Client
		> cd .\Java\
		> vbjc -classpath ..\Classes\ -d ..\Classes\ .\Client.java
		> cd ..

	1.3 Compile  the Java Server
		> cd .\Java\
		> vbjc -classpath ..\Classes\ -d ..\Classes\ .\Server.java
		> cd ..

	Alternatively, the file "vbmake.cmd" is provided to build the demo.



2. Running the Insecure Demo

	2.1 Launch the insecure server
		> vbj -classpath .\Classes\  -DORBpropStorage=.\Properties\server_insecure.props Server

	2.2 Launch the insecure client
		> vbj -classpath .\Classes\ -DORBpropStorage=.\Properties\client_insecure.props Client

	Alternatively, the following Windows batch command scripts are provided:
		startInsecureServer.cmd
		startInsecureClient.cmd


3. Running the Secure Demo

	3.1 Launch the secure server
		> vbj -classpath .\Classes\  -DORBpropStorage=.\Properties\server_secure.props Server

	3.2 Launch the secure client
		> vbj -classpath .\Classes\  -DORBpropStorage=.\Properties\client_secure.props Client

	Alternatively, the following Windows batch command scripts are provided:
		startSecureServer.cmd
		startSecureClient.cmd

