On Fri, Mar 25, 2011 at 2:47 PM, David Frey <dpfrey(_at_)shaw(_dot_)ca> wrote:
I essentially am trying to do something like this with my extension
function:
String extensionFunction(String inputXml)
{
MyObject x = new MyObject();
x.unmarshal(inputXml);
return x.someComplexOperation();
}
So I want the extension function to parameter to be an XML string, not an
escaped XML string.
If, by "unmarshal", you mean parse, then I have to question what the
value is of serializing the node set only to immediately reverse the
process. Perhaps you can tell us more about the overall problem
you're trying to solve? There might be a simpler solution.
-Brandon :)
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--