We can now build the client and server applications for the demo. The client and server implementations are available in the respective examples subdirectories.
In your Common Lisp environment,
(load "examples/corba/bank/client/defsys")
(compile-system "bank-client" :load t)
You may need to adjust the (load "defsys")
command for your platform and/or provide a more precise location on your machine. For example, for a default LispWorks 4.1 Windows NT installation, you would specify:
(load "C:\\Program Files\\Xanalys\\LispWorks\\lib\\
4-2-0-0\\examples\\corba\\bank\\client\\defsys")
(load "examples/corba/bank/server/defsys")
(compile-system "bank-server" :load t)
The defsystem automatically invokes the IDL compiler on the file bank.idl
to generate the source code for the skeletons and stubs, which are compiled and stored in the bank fasl file. Following the standard defsystem rules, the IDL will only be recompiled if the fasl file is out of date.