tags:

views:

26

answers:

1

Hi!

Im pretty new to both XML validation and C++ (more familiar with Java..) so I guess this is a trivial question.

If I have a XML file and a XSD schema, how is the best way to validate them? Id like to to this in c++ without using external libraries, or as little libraries as possible, is it possible? Other ideas of how this can be done? I want a simple solution, the output needed is just if the validation i successful or not.

Any help is appreciated

// Katarina

+1  A: 

You need to use MSXML if you are using MS Visual Studio. Check this out.

Here is another link with discussion on that subject.

Koynov