ServicedComponent
Jesse Complains about the fact that ServicedComponents are stateless. This is because of the underlying model. ServicedComponents are meant to be "chained" together (for example, multiple ServicedComponents to service a bank account or things like that). If you were to start building strong state into it; you would quickly run into ugly concurency issues. For a servicedComponent, you really want the context to control the state of whatever you are playing with.
j.p