How to validate XML with XSD in Delphi without using MSXML?

How do you validate XML using XSD in Delphi without using MSXML? I am limited to MSXML3 which cannot execute XSD. Googling gave me nothing at all. Please help me, thanks.

+3
source share
3 answers

I am afraid that non-MSXML XML library does not support XSD.

But there are some that support DTD (such as Open XML ). Perhaps you can rewrite your schema in a DTD, even if the DTD is less efficient.

+2
source

Are you using SQL Server by accident? If so, you could do it.

(, ).

/ Delphi, , , : C:\Program Files\CodeGear\RAD Studio\5.0\source\Win32\xml ? (, , , , - Delphi 2007).

0

If .NET is installed, you can use the .Net XML library.

0
source

Source: https://habr.com/ru/post/1731204/


All Articles