Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Yesterday I could parse XML files with a program written in C, using the function doc = xmlParseFile(fname);.

Now, it returns NULL (which gets caught on the next line, returning an error). The program hasn't been changed for over a month, the XML files haven't changed since last week and libxml2 hasn't changed since the 25.3.2012. xmllint runs through the files with no problem, and I can parse them on another computer (Solaris, using the same source code, but a different compiler and library). So what else should I check? It sounds similar to this thread, although I'd like to avoid that hacky solution http://ubuntuforums.org/showthread.php?t=1402824 (haven't tried it yet)

The C program is actually a mex function called from MatLab, but that shouldn't make any difference, right? I am running this on GNU/Linux.

share|improve this question
You should make it more clear what xml library you are using. – Richard J. Ross III May 3 '12 at 11:54
It's on a cluster, so I don't have admin rights, but the name is /usr/lib64/libxml2.so.2.7.6 (or libxml2.a or libxml2.la). It's a 64 bit machine, hence the lib64. Does that answer your question? – craq May 3 '12 at 12:06
have you compiled and linked against the appropriate 64bit libraries? (libc, libm and so on) – Peter Miehle May 3 '12 at 12:17
I guess so, seeing as it worked up until today. I use this command to compile: matlab_2011b/bin/mex -DDEBUG -I/usr/lib64 -lxml2 my_parse_xml.c there is a libc.a and libm.a inside /usr/lib64 – craq May 3 '12 at 12:46
erm... it's fixed now, after trying Peter's suggestion unsuccessfully and then removing it. Thanks for the suggestions, and sorry for the bother. I guess the admins were messing with stuff. – craq May 3 '12 at 13:15

1 Answer

try this:

  FILE *f = fopen("~/myxml.log", "a");
  xmlSetGenericErrorFunc(f, NULL);
  doc = xmlParseFile(fname);
  fclose(f);

and look on the results in the log-file.

share|improve this answer
good idea, but I couldn't open the file. (f==NULL after the fopen call.) Any idea why? Permissions were 666. – craq May 3 '12 at 13:19
that depends on your operating system. under windows it may be "c:\myxml.log". under UNIX "~" expands to your "$HOME", maybe that is not set. You can try "/home/craq/myxml.log" or whereever you reside. – Peter Miehle May 3 '12 at 14:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.