Server HTTP + WebSocket + Serveur TCP pour transmettre la température du thermometre dans ma cuisine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Application.java 374B

123456789101112
  1. public class Application {
  2. public static void main(String [] args)
  3. {
  4. String vHostName = "localhost";
  5. int vWebPagePort = 8080;
  6. int vWebSocketPort = 42069;
  7. int vTcpSocketPort = 6868;
  8. CuisineHTTPServer vServer = new CuisineHTTPServer();
  9. vServer.startServer(vHostName,vWebPagePort,vWebSocketPort,vTcpSocketPort);
  10. }
  11. }