0

I'm building a java stand alone application. This application is installed on one pc. There is another java stand alone program that it is installed in another pc to another net.

Now I want to send a notification with these program. For example the program 1, send message "start update", and the program 2 read this message and can execute an activity.

Now how can I implemented this push notification. I have also a php server, I don't know if this server is necessary.

bircastri
  • 2,169
  • 13
  • 50
  • 119

1 Answers1

0

It is a little strange question... you can use lot of technologies e.g. Rest, JMS, but also ugh you can send UDP packets or use a pipe on file system. It depends to what you have to send, for which purpose, with which security level.

Sampisa
  • 1,487
  • 2
  • 20
  • 28
  • I want to sent only message from this two program. For exmaple the program one send at program two, this message: "downlaod all data", the program two activate your method. – bircastri Jan 19 '17 at 05:06
  • If you google a little, you find lot of interesting choices ;) E.g. http://stackoverflow.com/questions/4615958/make-a-client-server-java-application – Sampisa Jan 30 '17 at 07:57