I want to generate an XML Schema based upon a class, just as you can do with the Xsd.exe tool.

E.g. xsd.exe /type: typename /outputdir:c:\ assmeblyname.

Is there a way to do this by using classes in the .NET Framework instead of using the standalone tool?

I'm sure I've seen information about task references or similar - i.e. something programmatic - that can be used in place of some of these standalone utilities, or that some standalone utilities get their features through the FCL or a Microsoft API.

link|improve this question

Not that I'm aware of (as a one-shot class with a GenerateXsd() method). But you can with a decent amount of elbow grease recreate it with a number of classes from System.Reflection and System.Xml. – Jesse C. Slicer Nov 10 '10 at 23:22
Hmmmmm ... thanks JesseC. Does anybody know of some of this prepackaged elbow grease on the Internet? – John K Nov 10 '10 at 23:23
Not what you're looking for, but you could wrap the tool. If it is a .NET tool, you could also reference the exe, and co-opt the code. – Merlyn Morgan-Graham Nov 10 '10 at 23:24
Google shows this: daniweb.com/forums/thread80993.html. Might be helpful? – Merlyn Morgan-Graham Nov 10 '10 at 23:26
feedback

2 Answers

Found this which looks like it should do the trick...

public static string GetSchema<T>()
    {
        XmlAttributeOverrides xao = new XmlAttributeOverrides();
        AttachXmlAttributes(xao, typeof(T));

        XmlReflectionImporter importer = new XmlReflectionImporter(xao);
        XmlSchemas schemas = new XmlSchemas();
        XmlSchemaExporter exporter = new XmlSchemaExporter(schemas);
        XmlTypeMapping map = importer.ImportTypeMapping(typeof(T));
        exporter.ExportTypeMapping(map);

        using (MemoryStream ms = new MemoryStream())
        {
            schemas[0].Write(ms);
            ms.Position = 0;
            return new StreamReader(ms).ReadToEnd();
        }
    }
link|improve this answer
1  
Full code at: stackoverflow.com/questions/336988/… – Jesse C. Slicer Nov 10 '10 at 23:51
feedback

do this:

public string GetFullSchema() {

        string @namespace = "yourNamespace";

        var q = from t in Assembly.GetExecutingAssembly().GetTypes()
        where t.IsClass && t.Namespace ==  @namespace
        select t;

        XmlReflectionImporter importer = new XmlReflectionImporter(@namespace);

        XmlSchemas schemas = new XmlSchemas();
        XmlSchemaExporter exporter = new XmlSchemaExporter(schemas);


        foreach (var x in q)
        {
                var map = importer.ImportTypeMapping(x);
                exporter.ExportTypeMapping(map);
        }

        using (MemoryStream ms = new MemoryStream())
        {
           schemas[0].Write(ms);
           ms.Position = 0;
           return new StreamReader(ms).ReadToEnd();
        }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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