I have a Java application running on Debian OS and communicate with a Windows C# server program. My Java application will connect to C# server program via TCP/IP. A problem I am facing now is that my Debian OS system time is always slower than Windows Server System Time. Both applications are mostly run in an internal network, which has no access to Internet.
- May I know is there any way to synchronize the time between these two applications?
- I read about NTP, can Java use NTP to synchronize time with C# program?
- Must C# program be running as NTP Server? (Any way to do it?)
- If writing simply message exchange between these two applications, will there be any problem?
Will be greatly appreciated if anyone can provide links to study the implementations.