Hello All,

I've been handed an old xslt conversion program, and asked to make it work on Linux (originally compiled for SCO or TRU64 I think). The make file with it specified Xalan_C_1_5_0 as the xalan lib, but I have not been able to find that specific version online in the archives (just xalan_c_1_5).

Compiling fails on the following line:

   const XalanDOMString& ndata =
             executionContext.getUnparsedEntityNData(name, *doc);

where executionContext is a parameter to the function, defined thus:

  XPathExecutionContext&      executionContext,

name is

  const XalanDOMString& name = arg->str();
         (arg is a passed pointer to an XObject)

and doc is
  XalanDocument* const doc = XalanNode::DOCUMENT_NODE ==
       context->getOwnerDocument()


It is saying that there is no getUnparsedEntityNData() function. I have searched google and the archives for info about this call, but am getting nothing. Was there such a function, perhaps now deprecated or refactored? Any assistance would be greatly appreciated!

-Scott

Reply via email to