Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When it receives a request, the TapestryFilter obtains the HttpServletRequestHandler service, and invokes its service() method.

...

This pipeline performs initial processing of the request. It can be extended by contributing a HttpServletRequestFilter into the HttpServletRequestHandler service's configuration.

...

  • It stores the request and response into the RequestGlobals service. This is a per-thread scoped service that stores per-thread/per-request information.
  • It wraps the request and response as a Request and Response, and passes them into the RequestHandler pipeline.

RequestHandler Pipeline

...

The terminator for this pipeline stores the Request and the Response into RequestGlobals, then requests that the MasterDispatcher service figure out how to handle the request (if it is, indeed, a Tapestry request).

...