[xsl] Problems with Libxslt - GNOME

Subject: [xsl] Problems with Libxslt - GNOME
From: "Luana Knoff" <lua.knoff@xxxxxxxxx>
Date: Tue, 8 Aug 2006 11:01:07 -0300
Hi all.
I have some doubts using Libxslt.I put the library in my server to do
some transformations.

The first transformation goes well, but the second doesn't.

The second execution goes well till it finds any function of libxslt.
As in my example:

int ModToWml(string s, char* stylesheet)

{
      const char* params[1];
      xsltStylesheetPtr cur = NULL;
      xmlDocPtr doc, res;

//CONVERTING

params[0] = NULL;

xmlSubstituteEntitiesDefault(1);

xmlLoadExtDtdDefaultValue = 1;

doc = xmlParseFile("myfile.txt");

The problems happen when xmlSubstituteEntitiesDefault(1); is called.
If I cut this line the problems will occur when
xmlLoadExtDtdDefaultValue = 1; is called. And so on.

Any hints are welcome.

Luana

Current Thread