Sorry!
The problems is a runtime exception. The execution stops when any
function of libxslt is called by the second time.
I need to do some transformations with web pages in my server.
Everything goes well by the first transformation of a web page, but
when I try to do the same transformation with the same page by the
second time, everything goes well 'till find any function of libxslt.
int ModToWml(string s, char* stylesheet)
{
const char* params[1];
xsltStylesheetPtr cur = NULL;
xmlDocPtr doc, res;
//CONVERTING
params[0] = NULL;
xmlSubstituteEntitiesDefault(1); //the execution stops here:
runtime exception
xmlLoadExtDtdDefaultValue = 1; //if I remove the line above the
error occurs here
doc = xmlParseFile("myfile.txt");
....
}
If you need some more details please tell me.
Thank you!
Luana
_______________________________________________
xslt mailing list, project page http://xmlsoft.org/XSLT/
[email protected]
http://mail.gnome.org/mailman/listinfo/xslt