package helloworld.om; import java.io.IOException; import org.apache.tuscany.api.SCARuntime; public class HelloWorldServer { /** * @param args */ public static void main(String[] args) { SCARuntime.start("helloworldws-om.composite"); try { System.out.println("HelloWorld server started"); System.in.read(); } catch (IOException e) { e.printStackTrace(); } SCARuntime.stop(); System.out.println("HelloWorld server stopped"); } }