NextPrevUpTopContentsIndex

3.3 Building the bank client and server

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,

  1. Build the client by running:
  2. (load (example-file "corba/bank/client/defsys"))
    (compile-system "bank-client"
                    :t-dir (get-temp-directory)
                    :force t
                    :load t)
  3. Build the server by running:
(load (example-file "corba/bank/server/defsys"))
(compile-system "bank-server"
                :t-dir (get-temp-directory)
                :force t
                :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.

When compiling to a fixed directory, following the standard defsystem rules, the IDL will only be recompiled if the fasl file is out of date. ( bank.idl will always be recompiled by the example form above, because it specifies a temporary output directory, in order to avoid writing to a location which may not be writable.)


Developing Component Software with CORBA - 30 Oct 2007

NextPrevUpTopContentsIndex