I have a taglib that makes an http request to a server which responds with some XML. How would I return that XML to the caller of the tag? I tried doing this:
<x:parse var="doc"> <mytaglib:getXml id="test"/> </x:parse>
and my taglib does this:
<http:post var="request" ... /http:post>
${request.responseBodyAsStream}But that doesn't work. Is that what it the tag is supposed to return? If I do responseBodyAsString, it returns the string, but all the < and > tags are escaped out.
Please help,
Thanks!
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
