Package org.uscxml

Examples of org.uscxml.HTTPServer


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();
  }
View Full Code Here

TOP

Related Classes of org.uscxml.HTTPServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.