qwazer
qwazer

Reputation: 7521

How to convert ecore (EMF) to xsd

What is the best way to convert .ecore-files into .xsd-files?

Upvotes: 5

Views: 6941

Answers (2)

Robert Wang
Robert Wang

Reputation: 31

In Eclipse, when only EMF SDK is installed, you may not be able to see the model exporter for "XML Schema". (On my side, only "UML model" is visible).

Use an update site with EMF repository. Install the XSD features then the exporter would appear.

Upvotes: 2

Tillmann Seidel
Tillmann Seidel

Reputation: 1042

You need to have the feature XSD Ecore Converter installed (it's part of the EMF project).

Then you can open the context menu on your ecore's generator model (extension .genmodel) and select Export Model. It should offer you now to export the ecore to XML schema.

Upvotes: 8

Related Questions