]> matita.cs.unibo.it Git - logicplayer.git/commitdiff
Updated to new version.
authorwww-data <www-data@lahar.helm.cs.unibo.it>
Tue, 2 Dec 2014 11:20:30 +0000 (12:20 +0100)
committerwww-data <www-data@lahar.helm.cs.unibo.it>
Tue, 2 Dec 2014 11:20:30 +0000 (12:20 +0100)
server/com/company/DirectoryWhatcer.java
server/com/company/MD5.java
server/com/company/Makefile
server/com/company/dbConnect.java
server/com/company/global.java
server/com/company/superServer.java
server/com/company/xmlOperation.java
server/go.sh

index 8b376a1a3557e5cdec54122e390834a1ac8cb760..1d219b2367c7a0bba8bd3d0afc8bcdd2ca55ba53 100644 (file)
@@ -66,6 +66,36 @@ class DirectoryWatcher implements Runnable {
                 }
             }
         }
+        dbConnect db=new dbConnect();
+        try {
+            String[] esercizi=suString.stringToVectorString(db.dbQuery("4"));
+            boolean delete=true;
+            for(String esercizio : esercizi)
+            {
+                for(String elemento : lista)
+                {
+                    if(esercizio.contentEquals(elemento))
+                        delete=false;
+                }
+                if(delete) {
+                    xmlOperation es = new xmlOperation();
+                    es.remove(esercizio);
+                }
+
+            }
+        } catch (SQLException e) {
+            e.printStackTrace();
+        } catch (ClassNotFoundException e) {
+            e.printStackTrace();
+        } catch (IllegalAccessException e) {
+            e.printStackTrace();
+        } catch (InstantiationException e) {
+            e.printStackTrace();
+        } catch (IOException e) {
+            e.printStackTrace();
+        } catch (NoSuchAlgorithmException e) {
+            e.printStackTrace();
+        }
     }
 
     // print the events and the affected file
@@ -78,7 +108,7 @@ class DirectoryWatcher implements Runnable {
             boolean check = EsNameParser.check(pathCreated.getFileName().toString());
             if(!check)
             {
-                File file = new File(global.locationEsercizi+pathCreated.getFileName().toString());
+                File file = new File("/var/www/html/esercizi/"+pathCreated.getFileName().toString());
                 if(file.delete())
                     System.out.println("eliminato");
                 else
index 623f11f280bf954de286e7ca233bfc332935bdaa..6c7cc9635bb14dd503802447fd788e5ca40fb2f2 100644 (file)
@@ -23,7 +23,6 @@ public class MD5 {
                     digest.update(buffer, 0, numRead);
             }
             byte [] md5Bytes = digest.digest();
-            System.out.println(convertHashToString(md5Bytes));
             return convertHashToString(md5Bytes);
         } catch (Exception e) {
             return null;
index 2cc75ecf48a062883d681ac52d210ecc2e43ab40..529d98ea4c31e9213452b5964bfda2bfd6d4a214 100644 (file)
@@ -1,2 +1,5 @@
 all:
-       javac -cp "/tmp/ext/mysql-connector-java.jar:/tmp/ext/jdom-2.0.5.jar:/tmp/ext/mail-1.4.1.jar:." *.java
+       javac -cp "/projects/logicplayer/server/ext/*:." *.java
+
+clean:
+       rm *.class
index 28d851cb5bf38ba08393c067c30bf9e76b13c042..e7c7e20224ce72bb98cd83ffc7a5874e6cd44be1 100644 (file)
@@ -3,8 +3,6 @@ package com.company;
 import java.sql.*;
 import java.io.IOException;
 
-import java.math.BigInteger;
-import java.security.MessageDigest;
 import java.security.NoSuchAlgorithmException;
 
 import java.util.Random;
@@ -33,10 +31,10 @@ public class dbConnect
     //pulisce confmail e connessi da tutte le richieste maggiori di 10 minuti
     private static void deletetmp() throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
-        PreparedStatement preparedStmt = db.prepareStatement("DELETE FROM confmail WHERE time<=?");
+        PreparedStatement preparedStmt = db.prepareStatement("DELETE FROM "+global.dbConstant.tbConfermaMail+" WHERE "+global.dbConstant.clTime+"<=?");
         preparedStmt.setLong (1,(time()-600000));
         preparedStmt.execute();
-        preparedStmt = db.prepareStatement("DELETE FROM connessi WHERE time<=?");
+        preparedStmt = db.prepareStatement("DELETE FROM "+global.dbConstant.tbConnessi+" WHERE "+global.dbConstant.clTime+"<=?");
         preparedStmt.setLong (1,(time()-600000));
         preparedStmt.execute();
     }
@@ -57,32 +55,35 @@ public class dbConnect
             return "mail-error";
         else {
             assert pass != null;
-            if(code==0)
-                return registration(user, pass);
-            else if(code==1)
-                return login(user, pass);
-            else if(code==2)
-                return recupero(user);
-            else
-                return "error";
+            if (pass.length()>6) {
+                if (code == 0)
+                    return registration(user, pass);
+                else if (code == 1)
+                    return login(user, pass);
+                else if (code == 2)
+                    return recupero(user);
+                else
+                    return "error";
+            }
         }
+        return "error";
     }
 
     //routin di gestione recupero pass
     private static String recupero(String user) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM utenti where user='"+user+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbUtenti+" where "+global.dbConstant.clUser+"='"+user+"'");
         if(returnQuery!=null)
         {
             if(returnQuery.next())
             {
-                EmailSender email = new EmailSender(global.email,
-                        global.emailPass,
+                EmailSender email = new EmailSender(global.emailConstant.email,
+                        global.emailConstant.emailPass,
                         "smtp.gmail.com",
-                        global.email,
+                        global.emailConstant.email,
                         user,
-                        "OGGETTO: recupero password",
-                        "la tua password è "+returnQuery.getString("pass"));
+                        "OGGETTO: recupero password LogicPlayer",
+                        "la tua password di LogicPlayer è "+returnQuery.getString(global.dbConstant.clPass));
                 email.inviaEmail();
                 return "mail-pass-ok";
             }
@@ -98,24 +99,24 @@ public class dbConnect
     private static String registration(String user, String pass) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
         String ran;
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM utenti where user='"+user+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbUtenti+" where "+global.dbConstant.clUser+"='"+user+"'");
         if(returnQuery!=null)
         {
             if(returnQuery.next())
             {
-                if(returnQuery.getString("user").compareTo(user)==0 && returnQuery.getString("pass").compareTo(pass)==0)
+                if(returnQuery.getString(global.dbConstant.clUser).compareTo(user)==0 && returnQuery.getString(global.dbConstant.clPass).compareTo(pass)==0)
                     return "già-registrato";
             }
         }
-        returnQuery=stmt.executeQuery("SELECT * FROM confmail where user='"+user+"'");
+        returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbConfermaMail+" where "+global.dbConstant.clUser+"='"+user+"'");
         if(returnQuery!=null)
         {
             if(returnQuery.next())
             {
-                ran=returnQuery.getString("hash");
-                if(returnQuery.getString("pass").compareTo(pass)!=0)
+                ran=returnQuery.getString(global.dbConstant.clRandom);
+                if(returnQuery.getString(global.dbConstant.clPass).compareTo(pass)!=0)
                 {
-                    PreparedStatement preparedStmt = db.prepareStatement("UPDATE confmail SET pass =? where user=?");
+                    PreparedStatement preparedStmt = db.prepareStatement("UPDATE "+global.dbConstant.tbConfermaMail+" SET "+global.dbConstant.clPass+" =? where user=?");
                     preparedStmt.setString (1,pass);
                     preparedStmt.setString (2,user);
                     preparedStmt.execute();
@@ -125,8 +126,7 @@ public class dbConnect
             {
                 Random random = new Random();
                 ran=String.valueOf(random.nextInt(100000000)+10000000)+String.valueOf(random.nextInt(100000000)+10000000)+String.valueOf(random.nextInt(100000000)+10000000);
-                //returnQuery=stmt.executeQuery("INSERT INTO confmail VALUES('"+user+"','"+pass+"',"+hash+"')");
-                PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO confmail (user,pass,hash,time) VALUES(?,?,?,?)");
+                PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO "+global.dbConstant.tbConfermaMail+" ("+global.dbConstant.clUser+","+global.dbConstant.clPass+","+global.dbConstant.clRandom+","+global.dbConstant.clTime+") VALUES(?,?,?,?)");
                 preparedStmt.setString (1,user);
                 preparedStmt.setString (2,pass);
                 preparedStmt.setString (3,ran);
@@ -138,21 +138,20 @@ public class dbConnect
         {
             Random random = new Random();
             ran=String.valueOf(random.nextInt(100000000)+10000000)+String.valueOf(random.nextInt(100000000)+10000000)+String.valueOf(random.nextInt(100000000)+10000000);
-            //returnQuery=stmt.executeQuery("INSERT INTO confmail VALUES('"+user+"','"+pass+"',"+hash+"')");
-            PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO confmail (user,pass,hash,time) VALUES(?,?,?,?)");
+            PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO "+global.dbConstant.tbConfermaMail+" ("+global.dbConstant.clUser+","+global.dbConstant.clPass+","+global.dbConstant.clRandom+","+global.dbConstant.clTime+") VALUES(?,?,?,?)");
             preparedStmt.setString (1,user);
             preparedStmt.setString (2,pass);
             preparedStmt.setString (3,ran);
-            preparedStmt.setDouble (4,(double)time());
+            preparedStmt.setDouble(4, (double) time());
             preparedStmt.execute();
         }
-        EmailSender email = new EmailSender(global.email,
-                global.emailPass,
-                "smtp.gmail.com",
-                global.email,
+        EmailSender email = new EmailSender(global.emailConstant.email,
+                global.emailConstant.emailPass,
+                global.emailConstant.smtpName,
+                global.emailConstant.email,
                 user,
-                "OGGETTO: Registrazione App",
-                "per confermare la tua email clicka sul link: http://"+global.serverName+"/test?id="+ran);
+                "OGGETTO: Registrazione LogicPlayer",
+                "per confermare la tua email all'applicazione LogicPlayer clicka sul link: http://"+global.serverName+":"+global.portaHttpServer+"/test?id="+ran);
         email.inviaEmail();
         return "mail-reg-ok";
     }
@@ -160,16 +159,16 @@ public class dbConnect
     //routin conferma registrazione
     private static String confirmRegistration(String hash) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM confmail where hash='"+hash+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbConfermaMail+" where "+global.dbConstant.clRandom+"='"+hash+"'");
         if(returnQuery!=null)
         {
             if(returnQuery.next())
             {
-                PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO utenti (user,pass) VALUES(?,?)");
-                preparedStmt.setString (1,returnQuery.getString("user"));
-                preparedStmt.setString (2,returnQuery.getString("pass"));
+                PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO "+global.dbConstant.tbUtenti+" ("+global.dbConstant.clUser+","+global.dbConstant.clPass+") VALUES(?,?)");
+                preparedStmt.setString (1,returnQuery.getString(global.dbConstant.clUser));
+                preparedStmt.setString (2,returnQuery.getString(global.dbConstant.clPass));
                 preparedStmt.execute();
-                preparedStmt = db.prepareStatement("DELETE FROM confmail WHERE hash=?");
+                preparedStmt = db.prepareStatement("DELETE FROM "+global.dbConstant.tbConfermaMail+" WHERE "+global.dbConstant.clRandom+"=?");
                 preparedStmt.setString (1,hash);
                 preparedStmt.execute();
                 return "registrazione-ok";
@@ -182,12 +181,12 @@ public class dbConnect
     private static String login(String user, String pass) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
 
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM utenti where user='"+user+"' and pass='"+pass+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbUtenti+" where "+global.dbConstant.clUser+"='"+user+"' and "+global.dbConstant.clPass+"='"+pass+"'");
         if(returnQuery!=null)
         {
             if(returnQuery.next())
             {
-                if(returnQuery.getString("user").compareTo(user)==0 && returnQuery.getString("pass").compareTo(pass)==0)
+                if(returnQuery.getString(global.dbConstant.clUser).compareTo(user)==0 && returnQuery.getString(global.dbConstant.clPass).compareTo(pass)==0)
                     return putConnessi(user);
             }
         }
@@ -201,7 +200,7 @@ public class dbConnect
         ArrayList<String> split= suString.stringToArrayList(message);
         if(split.size()>=1)
         {
-            ResultSet returnQuery=stmt.executeQuery("SELECT * FROM connessi WHERE tempkey='"+split.get(1)+"'");
+            ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbConnessi+" WHERE "+global.dbConstant.clTempKey+"='"+split.get(1)+"'");
             if(returnQuery!=null)
             {
                 if(returnQuery.next())
@@ -218,28 +217,18 @@ public class dbConnect
     {
         Random random = new Random();
         String ran=String.valueOf(random.nextInt(100000000)+10000000)+String.valueOf(random.nextInt(100000000)+10000000);
-        PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO connessi (user,tempkey,thread,time) VALUES(?,?,?,?)");
+        PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO "+global.dbConstant.tbConnessi+" ("+global.dbConstant.clUser+","+global.dbConstant.clTempKey+","+global.dbConstant.clTime+") VALUES(?,?,?)");
         preparedStmt.setString (1,user);
         preparedStmt.setString (2,ran);
-        preparedStmt.setBoolean (3,false);
-        preparedStmt.setDouble (4,(double)time());
+        preparedStmt.setDouble(3, (double) time());
         preparedStmt.execute();
         return ran;
     }
 
-    //segnalare morte di un thread
-    private String threadDead(String key) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
-    {
-        PreparedStatement preparedStmt = db.prepareStatement("DELETE FROM confmail WHERE tempkey=?");
-        preparedStmt.setString (1,key);
-        preparedStmt.execute();
-        return "kill-ok";
-    }
-
     //remposta il rimer dell'utente nella tabella connessi
     private String connessiTimer(String key) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException
     {
-        PreparedStatement preparedStmt = db.prepareStatement("UPDATE connessi SET time =? where tempkey=?");
+        PreparedStatement preparedStmt = db.prepareStatement("UPDATE "+global.dbConstant.tbConnessi+" SET "+global.dbConstant.clTime+" =? where "+global.dbConstant.clTempKey+"=?");
         preparedStmt.setDouble (1,(double)time());
         preparedStmt.setString (2,key);
         preparedStmt.execute();
@@ -248,12 +237,12 @@ public class dbConnect
 
     private String exerciseAccept(String request) throws SQLException, IOException, NoSuchAlgorithmException {
         ArrayList<String> input=suString.stringToArrayList(request);
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM connessi where tempkey='"+input.get(0)+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM " + global.dbConstant.tbConnessi + " where " + global.dbConstant.clTempKey + "='" + input.get(0) + "'");
         String utente=null;
         if(returnQuery!=null)
         {
             if(returnQuery.next())
-                utente=returnQuery.getString("user");
+                utente=returnQuery.getString(global.dbConstant.clUser);
         }
         if(utente!=null)
         {
@@ -264,7 +253,7 @@ public class dbConnect
                 {
                     if(MD5.digest(esercizio).contentEquals(input.get(2)))//se il digest è uguale
                     {
-                        PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO esercizi (esercizio,utente,click,time) VALUES(?,?,?,?)");
+                        PreparedStatement preparedStmt = db.prepareStatement("INSERT INTO "+global.dbConstant.tbEsercizi+" ("+global.dbConstant.clEsercizio+","+global.dbConstant.clUser+","+global.dbConstant.clVoto+","+global.dbConstant.clTime+") VALUES(?,?,?,?)");
                         preparedStmt.setDouble(4, Double.parseDouble(input.get(3)));
                         preparedStmt.setInt (3,Integer.valueOf(input.get(4)));
                         preparedStmt.setString (2,utente);
@@ -282,19 +271,19 @@ public class dbConnect
         ArrayList<String> arrayResult=new ArrayList<String>();
         ArrayList<String> input=suString.stringToArrayList(request);
         String result=null;
-        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM connessi where tempkey='"+input.get(0)+"'");
+        ResultSet returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbConnessi+" where "+global.dbConstant.clTempKey+"='"+input.get(0)+"'");
         String utente=null;
         if(returnQuery!=null)
         {
             if(returnQuery.next())
-                utente=returnQuery.getString("user");
+                utente=returnQuery.getString(global.dbConstant.clUser);
         }
         if(utente!=null)
         {
-            returnQuery=stmt.executeQuery("SELECT * FROM esercizi where utente='"+utente+"'");
+            returnQuery=stmt.executeQuery("SELECT * FROM "+global.dbConstant.tbEsercizi+" where "+global.dbConstant.clUser+"='"+utente+"'");
             while(returnQuery.next())
             {
-                arrayResult.add(returnQuery.getString("esercizio")+"/"+MD5.digest(returnQuery.getString("esercizio"))+"/"+returnQuery.getDouble("time")+"/"+returnQuery.getInt("click"));
+                arrayResult.add(returnQuery.getString(global.dbConstant.clEsercizio)+"/"+MD5.digest(returnQuery.getString(global.dbConstant.clEsercizio))+"/"+returnQuery.getDouble(global.dbConstant.clTime)+"/"+returnQuery.getInt(global.dbConstant.clVoto));
             }
             result=suString.multiToString(arrayResult);
         }
@@ -307,7 +296,7 @@ public class dbConnect
             String result = login(input.get(0), input.get(1));
             if(!result.contains("err"))
             {
-                PreparedStatement preparedStmt = db.prepareStatement("UPDATE utenti SET pass =? where user=?");
+                PreparedStatement preparedStmt = db.prepareStatement("UPDATE "+global.dbConstant.tbUtenti+" SET "+global.dbConstant.clPass+" =? where "+global.dbConstant.clUser+"=?");
                 preparedStmt.setString (1,input.get(2));
                 preparedStmt.setString (2,input.get(0));
                 preparedStmt.execute();
@@ -317,9 +306,21 @@ public class dbConnect
         return "error";
     }
 
+    private String esAndMD5()
+    {
+        String list=EsNameParser.esName();
+        ArrayList<String> esList=suString.stringToArrayList(list);
+        ArrayList<String> ritorno=new ArrayList<String>();
+        for(String esercizio : esList)
+        {
+            ritorno.add(esercizio+"/"+MD5.digest(esercizio));
+        }
+        return suString.multiToString(ritorno);
+    }
+
     public String dbQuery(String input) throws SQLException, ClassNotFoundException, IllegalAccessException, InstantiationException, IOException, NoSuchAlgorithmException {
         Class.forName("com.mysql.jdbc.Driver").newInstance();
-        db = DriverManager.getConnection("jdbc:mysql://localhost/logintesi", "root", "csc@CerCo!");
+        db = DriverManager.getConnection(global.dbConstant.dbLink+global.dbConstant.dbName, global.dbConstant.dbAdmin, global.dbConstant.dbPassword);
         stmt = db.createStatement();
         deletetmp();
         if (input.charAt(0) == '0')
@@ -336,14 +337,8 @@ public class dbConnect
             return infoConnessi(input.substring(2));
         else if (input.charAt(0) == '6')
             return connessiTimer(input.substring(2));
-        /*else if (input.charAt(0) == '7')
-            return threadDead(input.substring(2));*/
-        /*else if(input.charAt(0)=='8')
-            return aggToClient(input.substring(2));
-        else if(input.charAt(0)=='9')
-            return aggForClient(input.substring(2));
-        else if(input.charAt(0)=='a' && input.charAt(1)=='0')
-            return check(input.substring(3));*/
+        else if (input.charAt(0) == '7')
+            return esAndMD5();
         else if (input.charAt(0) == '8')
             return exerciseAccept(input.substring(2));
         else if (input.charAt(0) == '9')
index 2bf06c457c5688156eb50931c52448aa87114422..304f97039a9695c4e5eb0914755a1a802f25cd7f 100644 (file)
@@ -2,15 +2,41 @@ package com.company;
 
 
 public class global {
-    public static final String listaEsercizi="/projects/logicplayer/Server/server/tesi/src/com/company/esercizi.xml";
-    public static final String locationEsercizi="/projects/logicplayer/public_html/esercizi/";
-    public static String home="/projects/logicplayer/Server/server/tesi/src/com/company/";
-    public static String keyStorePass="123456";
-    public static String keyStoreName="keystore.jks";
-    public static String serverName="130.136.129.1";
-    public static String email="confermaiscrizioneserver@gmail.com";
-    public static String emailPass="tes6phev8n";
-    public static int portaServer=25000;
-    public static int portaHttpServer=8000;
+    public static final String listaEsercizi = "/projects/logicplayer/server/com/company/esercizi.xml";
+    public static final String locationEsercizi = "/projects/logicplayer/public_html/esercizi/";
+    public static String home = "/projects/logicplayer/server/com/company/";
+    public static String keyStorePass = "123456";
+    public static String keyStoreName = "keystore.jks";
+    public static String serverName = "130.136.129.1";
+    public static int portaServer = 25000;
+    public static int portaHttpServer = 8000;
+
+    public static class emailConstant
+    {
+        public static String email = "confermaiscrizioneserver@gmail.com";
+        public static String emailPass = "tes6phev8n";
+        public static String smtpName= "smtp.gmail.com";
+    }
+
+    public static class dbConstant{
+        public static final String dbLink= "jdbc:mysql://localhost/";
+        public static final String dbName = "LogicPlayerDB";
+        public static final String dbAdmin = "root";
+        public static final String dbPassword = "csc@CerCo!";
+        //nomi delle tabelle (di fianco sono elencati i nomi delle colonne)
+        public static final String tbConfermaMail = "confMail";//user,pass,random,time
+        public static final String tbConnessi = "connessi";//user,tempKey,time
+        public static final String tbUtenti = "utenti";//user,pass
+        public static final String tbEsercizi = "esercizi";//id,esercizio,user,voto,time
+        //nomi delle colonne (non tutte le tabelle hanno tutte le colonne)
+        public static final String clUser = "user";
+        public static final String clPass = "pass";
+        public static final String clRandom = "random";
+        public static final String clTime = "time";
+        public static final String clTempKey = "tempKey";
+        public static final String clId = "id";
+        public static final String clEsercizio = "esercizio";
+        public static final String clVoto = "voto";
+    }
     
 }
index d755d9c77129707af1a4af55258cbdc145dfa4fe..bac54fda29d9966e64a24eea8bb417116eea775d 100644 (file)
@@ -44,7 +44,6 @@ class superServer
                                while(true)
                                {
                                        SSLSocket c = (SSLSocket) s.accept();
-                                       System.out.println("CSC: debug 1");
                                        guestServer guest=new guestServer(c);
                                        Thread t=new Thread(guest);
                                        t.start();
index c4eff71545ad983c2c1eac37d99fc5c56021f390..f15cd796f6d1e0da27837a8100a39edbbaae8559 100644 (file)
@@ -3,7 +3,6 @@ package com.company;
 import java.io.File;
 import java.io.FileWriter;
 import java.io.IOException;
-import java.security.NoSuchAlgorithmException;
 
 import org.jdom2.Document;
 import org.jdom2.Element;
index 4baa8fb065672c9f1f74130f96b5e220c1f025e2..6d66092189f41acf496f346cb3dc21ddaa62d9ab 100755 (executable)
@@ -1,3 +1,5 @@
 #!/bin/bash
 
-java -cp "/tmp/ext/mysql-connector-java.jar:/tmp/ext/jdom-2.0.5.jar:/tmp/ext/mail-1.4.1.jar:."   com.company.superServer
+#java -cp "/tmp/ext/mysql-connector-java.jar:/tmp/ext/jdom-2.0.5.jar:/tmp/ext/mail-1.4.1.jar:."   com.company.superServer
+
+java -cp "/projects/logicplayer/server/ext/*:."   com.company.superServer