1.  Created an environment file in the config directory called websphere.env
    modeled after the file ri.env.
2.  Updated websphere.env with location information for websphere, ports and
    hostnames for the deployment.
3.  Created directory specjappserver2001\src\deploy\websphere and copied the
    descriptors from specjappserver2001\src\deploy\reference to this new
    directory
4.  ant\bin\ant -Dappserver=websphere -Ddd.util=util.xml.CMP
    -Ddd.corp=corp.xml.CMP -Ddd.orders=orders.xml.CMP -Ddd.mfg=mfg.xml.CMP
    -Ddd.supp=supplier.xml.CMP
5.  Started the Application Assembly Tool (AAT, a GUI utility for deployment)
    and opened the ear file created by the ant script.
6.  Went through the EJB Modules in sequence and applied the following changes
    to each bean in the jar (where appropriate):
	- Binding Information (JNDI) for the bean and EJB References
	- Where Clauses for finder methods where appropriate.
	- Updated EJB Resource References
	- Set transaction isolation levels to REAPEATABLE_READ
	- Deployed the application (option in AAT) which created a top-down map.
7.  Saved the ear.
8.  For each jar in the ear the file META-INF/Schema/Schema.dbxmi was manually
    edited to apply meet in the middle mapping to schemas supplied in the
    SPECjAppServer2001 kit.
9.  Performed static access analysis using the CMPOpt utility:
	cmpopt ./corp.jar -report -update -ignoreopenfields -ignorenativemethods
	cmpopt ./mfg.jar -report -update -ignoreopenfields -ignorenativemethods
	cmpopt ./orders.jar -report -update -ignoreopenfields -ignorenativemethods
	cmpopt ./supplier.jar -report -update -ignoreopenfields -ignorenativemethods
	cmpopt ./util.jar -report -update -ignoreopenfields -ignorenativemethods
10. Repackaged the ear with the updated jars.
11. Started AAT once again and opened the specjappserver2001 ear file.
12. Re-deployed the ears to generate appropriate code that incorporated meet in
    the middle mapping.
13. Saved the ear, installed it and began testing.