I need to import some XML schemas.
In Delphi, I would use the the XML Data Binding Wizard to generate the Pascal code from the schemas.
Is there something like that in Delphi Prism to avoid writing all this boilerplate code?
Asked
Active
Viewed 1,439 times
5

Francesca
- 21,452
- 4
- 49
- 90
1 Answers
8
Try xsd.exe from the Microsoft SDK. /l:Oxygene generates Delphi Prism code.

Peter Nowotnick
- 151
- 5
-
Got this error: "Could not find specified code provider type: Chrome" – Francesca May 27 '09 at 20:49
-
Is Prism installed? The command-line version doesn't work. You can try /l:Oxygene. Both works on my computer. – Peter Nowotnick May 27 '09 at 21:10
-
If you mean Delphi Prism, yes, it is installed (with the VS coming with it). But I don't see how I can launch xsd except from command line? – Francesca May 28 '09 at 00:41
-
1I think this error message comes from the xsd-Tool included into the mono-distribution. Make sure you use the one from the Microsoft SDK. – Peter Nowotnick May 28 '09 at 11:40