package org.apache.tuscany.sca.main; import org.apache.tuscany.sca.impl.io.XMLReader; import org.apache.tuscany.sca.impl.layout.EntityBuilder; import org.w3c.dom.Document; public class Main { /** * @param args * @throws Exception */ public static void main(String[] args) throws Exception { XMLReader reader = new XMLReader(); Document doc =reader.parseXMLFile(System.getProperty("user.dir")+"/input/composite2.xml"); EntityBuilder eb = new EntityBuilder(doc); eb.buildEntities(); } }