I'm doing a XSL transform on an XML document, based on the documentation from Bob Swart's "Delphi XE2 XML, SOAP & Web Services Development" book.
With the TXSLPageProducer on the form this works fine:
procedure TFrmRemoveNamespaces.Button1Click(Sender: TObject);
const
cRemoveNSTransform =
'<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">' +
'<xsl:output method="xml" indent="no"/>' +
'<xsl:template match="/|comment()|processing-instruction()">' +
' <xsl:copy>' +
' <xsl:apply-templates/>' +
' </xsl:copy>' +
'</xsl:template>' +
'<xsl:template match="*">' +
' <xsl:element name="{local-name()}">' +
' <xsl:apply-templates select="@*|node()"/>' +
' </xsl:element>' +
'</xsl:template>' +
'<xsl:template match="@*">' +
' <xsl:attribute name="{local-name()}">' +
' <xsl:value-of select="."/>' +
' </xsl:attribute>' +
'</xsl:template>' +
'</xsl:stylesheet>';
// From http://wiki.tei-c.org/index.php/Remove-Namespaces.xsl
// This is a quick XSLT script for removing the namespaces from any document. It will remove the prefix as well.
var
SS: TStringStream;
TS: TStringList;
XMLDoc: TXMLDocument;
XSLPP: TXSLPageProducer;
begin
XMLDoc := TXMLDocument.Create(self);
XMLDoc.active := false;
MmoAfter.Clear;
SS := TStringStream.Create('',TEncoding.UTF8);
SS.Position := 0;
MmoBefore.Lines.SaveToStream(SS);
SS.Position := 0;
XMLDoc.LoadFromStream(SS);
SS.Free;
TS := TStringList.Create;
TS.Text := cRemoveNSTransform;
XSLPP := TXSLPageProducer.Create(self);
XSLPP.XML := TS;
XSLPP.XMLData := XMLDoc;
XMLDoc.active := true;
MmoAfter.Text := XSLPP.Content;
TS.Free;
XMLDoc.Free;
XSLPP.Free;
end;
However, if I move the code to a class helper function in a separate unit, I get an invalid pointer operation on the "Result := XSLPP.Content".
The calling code is simply "MmoAfter.Text := TXMLHelper.RemoveNameSpaces(MmoBefore.Text);" with this code form the class helper unit:
class function TXMLHelper.RemoveNameSpaces(XMLString: String): String;
const
// An XSLT script for removing the namespaces from any document. It will remove the prefix as well.
// From http://wiki.tei-c.org/index.php/Remove-Namespaces.xsl
cRemoveNSTransform =
'<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">' +
'<xsl:output method="xml" indent="no"/>' +
'<xsl:template match="/|comment()|processing-instruction()">' +
' <xsl:copy>' +
' <xsl:apply-templates/>' +
' </xsl:copy>' +
'</xsl:template>' +
'<xsl:template match="*">' +
' <xsl:element name="{local-name()}">' +
' <xsl:apply-templates select="@*|node()"/>' +
' </xsl:element>' +
'</xsl:template>' +
'<xsl:template match="@*">' +
' <xsl:attribute name="{local-name()}">' +
' <xsl:value-of select="."/>' +
' </xsl:attribute>' +
'</xsl:template>' +
'</xsl:stylesheet>';
var
SS: TStringStream;
TS: TStringList;
XSLPP: TXSLPageProducer;
XMLDoc : TXMLDocument;
begin
XMLDoc := TXMLDocument.Create(nil);
// XMLDoc.active := true;
SS := TStringStream.Create(XMLString,TEncoding.UTF8);
SS.Position := 0;
XMLDoc.LoadFromStream(SS);
SS.Free;
TS := TStringList.Create;
TS.Text := cRemoveNSTransform;
XSLPP := TXSLPageProducer.Create(nil);
XSLPP.DOMVendor := GetDOMVendor('MSXML');
XSLPP.XML := TS;
XSLPP.XMLData := XMLDoc;
// XSLPP.Active := true;
Result := XSLPP.Content;
TS.Free;
XMLDoc.Free;
XSLPP.Free;
end;
As you can see I had to set the DOMVendor, and the "Create(nil)" are different.
Could that last difference be the reason, and why?