Peter Neu wrote: > Hello Bertrand, > > I managed to send my xml in a post request to cocoon and retrieve the ouput > back in pdf. But one thing I couldn't figure out so far is how to actually > read the xml from the post request into my sitemap. Can you please provide a > short code snippet? > > The relevant part looks like this: > > <map:match pattern="pdf"> > <map:generate src="data/user.xml"/> //still a hard coded resource > <map:transform src="stylesheets/user.xsl"/> > <map:serialize type="fo2pdf"/> > </map:match>
You need the stream generator: <map:match pattern="pdf"> <map:generate type="stream"/> <map:transform src="stylesheets/user.xsl"/> <map:serialize type="fo2pdf"/> </map:match> I think that is enough. Try it. Upayavira
