|
Well, there are lots of options. You could
write a XSLT Component that could be fed XML and XSLT and convert it to raw
HTML.
You could use Tapestry (with the new OGNL support)
to walk your XML Dom and do XSLT-style transformations that way.
You could used Tapestry components and your own
implemenation of IMarkupWriter to walk business objects and produce XML, and use
a servlet filter and XSLT to generate HTML.
The default Tapestry implementation wants to be on
the front line (the thing that generates the HTML), but there are always
extension points and options. And if you hit a good pattern, feel free to
contribute some code back!
|
Title: Tapestry and XML/XSLT
