Project Wonder Installation

Version 175.1 by Maik Musall on 2019/02/21 15:35

This page is the starting point for beginning development with Project Wonder. Developing rich web applications with Project Wonder requires the installation of three primary components: the development environment, the WebObjects Frameworks, and the Project Wonder Frameworks. The development environment is comprised of Eclipse and WOLips, the latter being a set of plugins that provide a rich and specialized toolset for developing Wonder applications within the ubiquitous Eclipse Java IDE.

The guides here assume you are using OS X 10.6 (Snow Leopard) or higher. There are four sections to this installation process.

Overview of Steps:
 - install Eclipse (if necessary)
 - install WOLips Plugins for Eclipse
 - install WebObjects frameworks and configure WOLips
 - install Project Wonder and import into your workspace

Step 1:  Install the latest version of Eclipse

Easy but obsolete Install:

You can download and run Golipse, but Golipse hasn't been updated since 2013, so realistically, that's no longer an option until someone goes ahead and updates it.

Golipse will download Eclipse and WOLips, and configure the environment in a fashion consistent with best practices for Wonder development. At launch, Golipse will simply ask for target install directory. After installing, you should launch Eclipse.app. If you are running OS X 10.7 or higher, this may force a download of a Java runtime if not already installed. Workspace Mechanic will offer to make initial and beneficial configuration changes.

After successfully running Golipse, you can skip to the download and install of the WebObjects frameworks.

Download Golipse


Manual but up-to-date Install:

First of all, you need a Java JDK installed. If you don't have it yet, get it directly from Oracle. We recommend to install both the latest Java 8 and the latest Java 11 versions, because Java 8 is where everything is solid right now, but 11 is where things are heading in the near future. If you are confused by a choice of different versions of Java 8, like 8u201 vs. 8u202, that doesn't matter much. Choose the one you will be using at deployment, which is usually the lower number of the two (the one without frills).

Head over to the Eclipse Foundation and download the latest version of Eclipse IDE suitable for your OS X version. At the time of this writing, that's 2018-12. Run the installer and follow the process, installing "Eclipse IDE for Java Developers". We don't need the EE stuff for Wonder. After completing the install, launch Eclipse to verify it's working. Close the welcome screen.

eclipse_installer.png  eclipse_installed.png

Step 2:  Install WOlips plugin and the WebObjects Framework

  1. Install WOLips Plugin

 

 

Currently you have a stock Eclipse installation which will allow you to do normal Java development, but it does not contain any of the WOLips plugins, so you will not have any of the WebObjects development tools. To begin your WOLips installation, from within Eclipse, select Help => Install New Software...

eclipse_installNewSoftware.png

This opens the "Install" panel where you can specify sites for Eclipse to download new software features. This dialog allows you to add/inspect any software features you have downloaded or were included in your default install of Eclipse. To install WOLips you will need to add the WOLips update site to Eclipse. You do this by clicking the "Add" button.  In the Name field you can enter a name for your update site. The name is arbitrary but since you could have multiple similar update sites you should give it a name that leaves no doubt about what it is.

In the Location field, enter the following URL for Eclipse 2018-12: https://jenkins.wocommunity.org/job/WOLips410/lastSuccessfulBuild/artifact/temp/dist/

eclipse04_software_add.pngeclipse05_software_wolipsRepo.png

You are returned to the "Install" panel, the WOLips site having been added to the list, and fully expanded to display all its offerings. Select features you want. If you're just getting started with WOLips you should select "WOLips" and "WOLips Goodies." Leave the other options until you are more familiar with Eclipse and WOLips and decide that you need them. After selecting the options you want, click "Next." You'll briefly see a progress bar while Eclipse "calculates requirements and dependencies."

eclipse06_wolips_packages.png

Click Next, accept the license, confirm the security check with "install anyway", and proceed. After completing the install, Eclipse will ask if it should restart itself. Please do so. After restarting, you can check if WOLips is correctly installed by calling up it's perspective via the menu Window → Perspective → Open Perspective → Other, and then choosing "WOLips". Here's how it should look:

eclipse08_perspective2.pngeclipse09_perspective3.png

2.  Install the WebObjects Framework

Once the WOLips plugin is installed, perform the following terminal commands:

$ sudo mkdir -p /Library/WebObjects/Versions/WebObjects543
$ curl -O https://wocommunity.org/tools/WOInstaller.jar
$ sudo java -jar WOInstaller.jar 5.4.3 /Library/WebObjects/Versions/WebObjects543

 

 

Step 3:  Link the Framework to WOlips through the properties configuration file

This is the most intricate step in the installation process.  The configuration file found in the WOlips preferences must correctly reference the framework directory structure.  Failure to successfully complete this step will result in broken libraries.

Running the script from step 2 installs the WO framework to the /Library/WebObjects/Versions/WebObjects543 directory on your system. Below is the contents for a configuration file that matches this setup.  Create a new file called wolips.543.properties.  Copy the code below (after modification) into that file.

Warning

You must replace YOUR_USER_NAME_HERE with your the username which installed the framework.

wo.system.root=/Library/WebObjects/Versions/WebObjects543/System
wo.user.frameworks=/Users/YOUR_USER_NAME_HERE/Library/Frameworks
wo.system.frameworks=/Library/WebObjects/Versions/WebObjects543/System/Library/Frameworks
wo.bootstrapjar=/Library/WebObjects/Versions/WebObjects543/System/Library/WebObjects/JavaApplications/wotaskd.woa/WOBootstrap.jar
wo.network.frameworks=/Network/Library/Frameworks
wo.api.root=/Library/WebObjects/ADC%20Reference%20Library/documentation/WebObjects/Reference/API
wo.network.root=/Network
wo.extensions=/Library/WebObjects/Versions/WebObjects543/Library/WebObjects/Extensions
wo.user.root=/Users/YOUR_USER_NAME_HERE
wo.local.frameworks=/Library/WebObjects/Versions/WebObjects543/Library/Frameworks
wo.dir.local.library.frameworks=/Library/WebObjects/Versions/WebObjects543/Library/Frameworks
wo.apps.root=/Library/WebObjects/Versions/WebObjects543/Library/WebObjects/Applications
wo.local.root=/Library/WebObjects/Versions/WebObjects543
wo.dir.user.home.library.frameworks=/Users/YOUR_USER_NAME_HERE/Library/Frameworks

Place this file in ~/Library/Application Support/WOLips, this directory should already exist and contain the default wolips.properties file.

The second part of this step is to link the WOlips plugin with the WO framework installed on your system.  This is done through the tab found at Eclipse menu -> Preferences -> WOlips.

eclipse10_wolipsPreferences.png

Warning

It is important to realize that if you change the WOlips Properties File to "wolips.543.properties" and then hit "apply" it will write out the (now stale) field values to that file.  This could potentially clobber your new wolips.543.properties file with the default values.  If you suspect this has happened, close the WOlips preferences and inspect the wolips.543.properties file.

Change the "WOlips Properties File" to wolips.543.properties and click OK. 

At this point, you should have a functioning WebObjects platform to work with, visit <hello world link> to test your first WebObjects application.

(Please note: you can't use the Wonder Frameworks at this point as only WebObjects installed. To use the Wonder Frameworks you must successfully complete step 4 which downloads the Wonder source. You must build the frameworks with that source).

Step 4:  Import Project Wonder into your Eclipse workspace

 Please follow this guide:  Getting the Wonder Source Code, which includes the page for importing the Project Wonder source into your Eclipse workspace.

Warning

Project Wonder is a significant part of the WebObjects experience.  Where the previous step seems to give new users the most grief now, this step will give you the most pleasure when working with WebObjects.

 

At the end of this step, you will have Project Wonder imported into Eclipse under its own working set.  If you are unfamiliar with working sets in Eclipse, the following video will help clarify.  This video also demonstrates a "Hello World" project creation to validate proper installation. Note: this video is made with a much older version of Eclipse 

Loading the video player...