public class TestVoiceXMLInvoker {
public static void main(String[] args) throws IOException, InterpreterException {
System.load("/Users/sradomski/Documents/TK/Code/uscxml/build/cli/lib/libuscxmlNativeJava64.jnilib");
HTTPServer http = HTTPServer.getInstance(5080, 5081);
URL jVoiceXMLDoc = new URL(new URL("file:"), "../../test/uscxml/test-jvoicexml.scxml");
Interpreter interpreter = Interpreter.fromURI(jVoiceXMLDoc);
interpreter.interpret();
}