Title: Getting XML from request

I am storing xml data in the request object by using

request.setAttribute("xmlData", someObject);

I need that object back as xml in an xsp page, when I try this

xsp:request:get-attribute name="xmlData" as="xml"

it returns the "xml" as a node value instead of individual nodes.

The question is then how do I get the data into the xsp as real xml nodes that I can use in a transformation step with xsl?

Reply via email to