I wasn't able to make it to OOPSLA this year (ironic, since it was in my home town of Vancouver). But there was apparently a successful Seaside BOF, and I just came across this flattering reference to it: Nat Pryce writes
Wow!
Seaside makes writing web apps startlingly simple and straightforward. In comparison, web app frameworks in the Java world, such as JSP or Struts, and even Ruby on Rails look like dinosaurs.
Thanks, Nat.
He then makes a great point about the relative philosophies of Java and Smalltalk at a language level, and how that affects the APIs built on top of them:
Seaside is able to present such a simple API because it takes advantage of "esoteric" features of its implementation language/platform, Smalltalk, such as continuations and closures. Java, in comparison to Smalltalk, is designed on the assumption that programmers using the Java language are not skilled enough use such language features without making a mess of things, and so the language should only contain simple features to avoid confusing our poor little heads. Paradoxically, the result is that Java APIs are overly complex, and our poor little heads get confused anyway. Seaside is a good demonstration that powerful, if complex, language features make the job of everyday programming easier, not harder, by letting API designers create elegant abstractions that hide the complexity of the problem domain and technical solution.