Lincoln wrote:
Can I chain another transform to my SourceWritingTransformer sitemap
pipeline?

Yes, you can add as many transformers as you like in any order. This is the whole idea behind pipelines! :-)

I imagine it would look like this. But the resulting png is not effected by
"another.xsl".

Without knowing what is in another.xsl I can't help much. But you should be able to do this.

To help debugging, you can temporarily remove the write-source transform stage to see what XML it is getting before and after you add another.xsl in the mix, so you can verify that another.xsl is working properly.

---
<map:pipeline>
  <map:match pattern="write/**">
    <map:generate type="request"/>
    <map:transform src="request2doc.xsl"/>
    <map:transform src="doc2write.xsl"/>
    <map:transform type="xinclude"/>

    <!--Added transform->
    <map:transform src="another.xsl"/>

    <map:transform type="write-source">
        <map:parameter name="serializer" value="svg2png"/>
    </map:transform>
    <map:serialize type="xml"/>
  </map:match>
</map:pipeline>
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]