I am using the Ecore model which is based on imported XML Schema file (XSD). Using generated Java classes (based on Ecore model), I build an instance of the model and save it as a resource in XMI standard. This XMI file is actually an XML file which conforms to the Ecore model.

Questions:
Is it possible to convert the instance of the Ecore model from XMI format to XML format that conforms to the original XML Schema (XSD)?

Which sdks/frameworks/plugins can provide such conversion?

Thanks

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

If you make sure you save the instance using the resource created by the generated XyzResourceFactoryImpl it should produce results that conform to your schema. It sounds like you saved using an XMIResourceImpl. Try invoking Generate Test Code and look at the generated XyzExample.java for how to ensure you're using the right resource implementation with the right save/load options.

link|improve this answer
1  
You are right, I used XMIResourceImpl. By using: GenericXMLResourceFactoryImpl and XMLResource.OPTION_EXTENDED_META_DATA I got the solution for my question. Thanks. – sromku May 14 '11 at 18:06
1  
feedback

You can either export the .genmodel by using the EMF tooling:

  1. Open .genmodel
  2. Choose "Export" from the generator menubar

or you can export your ecore model to a schema programmatically by using the XSDFactoryImpl.

link|improve this answer
In my case, I need to transform the instance (XMI) of Ecore meta-model to XML which conforms the original XSD, and not to export the Ecore meta-model to XSD as I understood from your reply. Thanks, nevertheless, I think that I found the solution. – sromku May 14 '11 at 18:12
feedback

Your Answer

 
or
required, but never shown

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