On Thu, 19 Aug 2004 20:32:38 +0900, Michael Neumann wrote > 1) Is it possible to use Iowa without sessions? At the current time they are pretty much implicit, even if what one is doing, like you describe below, isn't an application that uses sessioning. There's very little performance penalty to the sessioning, though. It just means that your session gets stuffed into a cache. > 2) I'd like to create an Iowa session whenever the URL > /comment/PageName is invoked, where PageName is variable. I'd like > to show all comments for "PageName", and the user should be able to > add his/her comments, too. My question is, how to create the session > with the specific information ("PageName") filled in and then issue > the request. Sure, for this kind of application, session are not > required at all, but they probably are for Iowa. First, let's make sure I am answering the right question. You want to receive requests at /comment/FOO, where FOO can be anything. You want to then invoke some component with the value of FOO passed to it so that it can query the right set of comments to display, right? Kirk