Package br.com.visualmidia.core.server

Examples of br.com.visualmidia.core.server.Communicate.send()


        Socket socket = serverSocket.accept();
      Communicate communicate = new Communicate(socket);
       
          while (true) {
            if(communicate.receive().equals("200")){
              communicate.send("200");
              if(communicate.receive().equals("211")){
                File file = new File(Constants.PREVAYLER_SERVER_DATA_DIRETORY);
                for (String fileStr : file.list()) {
                  if(fileStr.contains(".snapshot")){
                    numberSnapshotTemp = Integer.parseInt(fileStr.split(".snapshot")[0]);
View Full Code Here


                    if(numberSnapshot  < numberSnapshotTemp){
                      numberSnapshot = numberSnapshotTemp;
                    }
                  }
                }
                communicate.send(String.valueOf(numberSnapshot));
                break;
              }
            }
            serverSocket.close();
          }
View Full Code Here

            Communicate communicate = new Communicate(sslComunicationSocket);

            communicate.receiveAndSend("200, Thank you bastard");
          communicate.receiveAndSend("211, Please Verify my date expiration");
          communicate.sendObject(dateExpiration.getCalendar());
          communicate.send(serial);
          GDDate expirationDateServer = new GDDate((Calendar)communicate.receiveObject());
         
          if(!expirationDateServer.equals(dateExpiration)){
            dateExpiration.setDate(expirationDateServer.getDate());
          }
View Full Code Here

        try {
            Socket socket = new Socket(GDSystem.serverIp, 9994);
            Communicate communicate = new Communicate(socket);
           
            if(communicate.sendAndReceive("200").equals("200")){
              communicate.send("211");
             
            int numberSnapshotServer = Integer.parseInt(communicate.receive());
            File directory = new File(Constants.PREVAYLER_DATA_DIRETORY);
            File file = null;
            for (String fileStr : directory.list()) {
View Full Code Here

           
            Communicate communicate = new Communicate(sslComunicationSocket);
           
            communicate.receiveAndSend("200, Thank you bastard");
            if (communicate.receive().equals("201")) {
              communicate.send("209, Troca de imagens");
              if (communicate.receive().equals("700")) {
                communicate.send("701, me manda a imagem");
                communicate.send(personId);
                if (communicate.receive().equals("704")) {// imagem encontrada
                  communicate.send("706, me mande a imagem");
View Full Code Here

           
            communicate.receiveAndSend("200, Thank you bastard");
            if (communicate.receive().equals("201")) {
              communicate.send("209, Troca de imagens");
              if (communicate.receive().equals("700")) {
                communicate.send("701, me manda a imagem");
                communicate.send(personId);
                if (communicate.receive().equals("704")) {// imagem encontrada
                  communicate.send("706, me mande a imagem");
                  communicate.receivePersonPhoto();
                  getDisplay().syncExec(new Runnable() {
View Full Code Here

            communicate.receiveAndSend("200, Thank you bastard");
            if (communicate.receive().equals("201")) {
              communicate.send("209, Troca de imagens");
              if (communicate.receive().equals("700")) {
                communicate.send("701, me manda a imagem");
                communicate.send(personId);
                if (communicate.receive().equals("704")) {// imagem encontrada
                  communicate.send("706, me mande a imagem");
                  communicate.receivePersonPhoto();
                  getDisplay().syncExec(new Runnable() {
                    public void run() {
View Full Code Here

              communicate.send("209, Troca de imagens");
              if (communicate.receive().equals("700")) {
                communicate.send("701, me manda a imagem");
                communicate.send(personId);
                if (communicate.receive().equals("704")) {// imagem encontrada
                  communicate.send("706, me mande a imagem");
                  communicate.receivePersonPhoto();
                  getDisplay().syncExec(new Runnable() {
                    public void run() {
                      Image image = new Image(getDisplay(), Constants.TEMP_DIR + "personPhoto" + ".jpg");
                      loadImage(image);
View Full Code Here

                SSLSocket sslComunicationSocket = (SSLSocket) sslComunicationSocketFactory.createSocket(GDSystem.getServerIp(), 9998);

                Communicate communicate = new Communicate(sslComunicationSocket);
                communicate.receiveAndSend("200, Thank you bastard");
                communicate.receiveAndSend("209, troca de imagens");
                communicate.send("702, vou te enviar uma imagem");
                communicate.send(personId);
                communicate.sendFile(communicate.getFileTransferConectionConnectMode(GDSystem.getServerIp()), file);
              } else {
                copyFileToPhotoFolder(file, personId);
              }
View Full Code Here

                Communicate communicate = new Communicate(sslComunicationSocket);
                communicate.receiveAndSend("200, Thank you bastard");
                communicate.receiveAndSend("209, troca de imagens");
                communicate.send("702, vou te enviar uma imagem");
                communicate.send(personId);
                communicate.sendFile(communicate.getFileTransferConectionConnectMode(GDSystem.getServerIp()), file);
              } else {
                copyFileToPhotoFolder(file, personId);
              }
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.