[Previous] [Table of Contents] [Next]

Bojangles Tutorial
Creating a distribution capable version of the business object

As with persistence, making the Account object persistence capable is also a two step process:

  • Determine the distribution service
  • Run the emitter(s) provided by the distribution service you choose
  • The distribution service provided by Bojangles is IIOP. To make the AccountBase object IIOP distribution capable, run the following emitters:

    java COM.ibm.jaws.tools.emit.RunStubEmitter COM.ibm.jaws.tutorial1.Account
    java COM.ibm.jaws.tools.emit.RunSkeletonEmitter COM.ibm.jaws.tutorial1.Account
    

    These two emitters will produce two new objects contained in the modules AccountStub.java and AccountSkeleton.java.


    [Previous] [Table of Contents] [Next]