bandit
bandit

Reputation: 95

how could I generate xsd dynamically

I want to generate a xsd file dynamically, I don't want to use jaxb because it creates alot of files when I use schemagen and I want the schema in one file only.

any idea?

Upvotes: 1

Views: 1870

Answers (1)

bdoughan
bdoughan

Reputation: 149007

If you use a JAXB runtime to generate an XML schema it should produce one Result per namespace URI:

Upvotes: 1

Related Questions