How can I use Xerces XML parser to validate GPX files?

2018-02-13 Thread Álvaro Cebrián Juan
Hi everyone, I have no prior knowledge with Xerces. I have downloaded and built Xerces-C++ version 3.2.0 in Ubuntu 16.04 LTS following the instructions provided on the website . The reason I need to use Xerces is to validate GPX files, which is a ligh

AW: How can I use Xerces XML parser to validate GPX files?

2018-02-13 Thread Stutz Oliver
Dear Álvaro, Do you have the compiled libxerces-c-3.2.so library in LIBPATH? I would suggest that you echo the LIBPATH and check where your library is. The problem seems to be that your binary can't find the shared object file which you have compiled manually. Another option to check the binary

Re: AW: How can I use Xerces XML parser to validate GPX files?

2018-02-13 Thread rleigh
On 2018-02-13 15:03, Stutz Oliver wrote: Dear Álvaro, Do you have the compiled libxerces-c-3.2.so library in LIBPATH? I would suggest that you echo the LIBPATH and check where your library is. The problem seems to be that your binary can't find the shared object file which you have compiled manu

Re: AW: How can I use Xerces XML parser to validate GPX files?

2018-02-13 Thread Álvaro Cebrián Juan
Hi Oliver and Roger, First of all, thank you very much for your help. I didn't know that the library was available in the Ubuntu repository. I have installed the libxerces-c-dev library (version is 3.1.3) with the package manager since I find it more convenient than dealing with the environment v

Re: AW: How can I use Xerces XML parser to validate GPX files?

2018-02-13 Thread Roger Leigh
On 13/02/18 18:26, Álvaro Cebrián Juan wrote: Hi Oliver and Roger, First of all, thank you very much for your help. I didn't know that the library was available in the Ubuntu repository. I have installed the libxerces-c-dev library (version is 3.1.3) with the package manager since I find it mor