Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > WebObjects Developer's Guide


Table of Contents Previous Section

Creating or Restoring the Request Page

After the session receives the awake message, the next step is to find the request page. Each request received by a WebObjects application is associated with one of the application's pages-the request page. The request page is usually the response page from the last request. (The response page shows the result, or output, of the request; note, however, that backtracking may alter this.)

If the user has just begun a new session (that is, if the request URL looks like the one shown in Figure 20), the user has not requested a specific page. Therefore, the application object creates a new instance of the WOComponent class for the page named "Main." The application object performs the following steps to create a component:

  1. It looks in the runtime system for a WOComponent subclass that has the same name as the request page (in this case, "Main"). If it finds such a class with the same name, it creates an instance of that class.

  2. If the application object fails to find a class in the run-time system, it looks for a scripted component with the name of the request page-first looking in the application, and then searching any linked frameworks. When it finds the .wo directory, it creates a component object using a unique WOComponent subclass for the scripted component and makes the scripted code the class implementation.

  3. It invokes the WOComponent subclass's init method or constructor.

  4. It invokes the WOComponent subclass's awake method to prepare it for the request.
If the request is made from an established session, the application object attempts to retrieve the request page from its cache. By default, an application caches component (or page) instances once they're created, primarily to facilitate backtracking: when users backtrack, they're revisiting pages restored by the application. The request URL contains the information needed to retrieve the page from the cache (see Figure 23). This information includes the page name and a context ID.

The component may not be in the cache for one of three reasons:

If the component is not in the cache, the application object creates the component using the procedure described above. If the component is in the cache, it sends the component the awake message.

Note that to retrieve the page from the cache, a context ID is required. The context ID identifies a page as it existed at the end of a particular request-response loop. Why is the context ID necessary? Imagine you're accessing a WebObjects application that lets you subscribe to various publications.

You navigate from the site's home page to the order page, where you select a publication, and then you go to the customer information page and fill in your address. After submitting this information, you navigate back to the home page. Next, you decide to enter a subscription for a friend. You follow the process a second time, selecting a different publication and entering your friend's address.

At this point, within a single session with the subscriptions application, you've accessed the same pages twice, entering different information each time. Let's say that you now realize that you made a mistake in your own address, so you backtrack to that page, change the address, and resubmit the information. It's important that the new address information is submitted to the customer information page as it existed during the first order so that the revised information can be associated with the right publication order.

WebObjects associates a different context ID (again, a randomly generated integer-to maintain security) with each request-response loop cycle. A request to a session includes both the name of request page and a context ID so the session object can locate, from its cache of page instances, the appropriate one to handle the request.

Table of Contents Next Section