We've got a database of XSLT documents, and I'd
like to be able to selectively apply one of those transforms at some point in my
pipeline.
We also generate XML from the database by extending
AbstractSAXSource, and implementing a pseudo-protocol that calls
it.
I'd like to be able to say something
like:
<match type="request"
pattern="customTransform">
<map:generate
src=""/>
<map:transform
src=""/>
<map:serialize>
</match>
All I really want to do is to grab the XML from the
database, and shove it in the pipeline at the transform stage. Any tips on
how to do this would be appreciated. I looked into extending an
AbstractTransformer, but I don't think that's the way to go, as I'm not
interested in the individual elements and events... I just want to run it thru
an arbitrary stylesheet.
thanks!
Collin
|
- Re: Transforming with XML in database Collin VanDyck
- Re: Transforming with XML in database Charles Yates