9
votes
5answers
528 views

How to prevent usage of expired license through system clock tampering?

I am currently working on a license manager using java, I will be specifying a start and end date for my application so I can force a licensed user to re-license the program after a certain amount of ...
7
votes
1answer
165 views
+50

Java scheduler which is completely independent of system time changes

Was using Java Timer, Then switched to ScheduledExecutorService, but my problem is not fixed. As Tasks scheduled before system time change (through ntpd) are not executed on delay specified. Have no ...
3
votes
3answers
4k views

Java NTP client

I need my software to communicate with an NTP server to determine the local clock offset. I have tried using the org.apache.commons.net.ntp package, but its implementation is rather poor when running ...
1
vote
2answers
912 views

Connecting to an NTP server keeps failing (Java)

I'm just learning how to do networking in Java and the first simple example of getting the time from an NTP server keeps throwing a ConnectException. I'll copy and paste the code, but I have the ...
0
votes
4answers
658 views

How to connect to time server for getting the current time settings ? Also is there any time server at all?

My android app requires to get the current date and time from internet. I can't rely on the date from the phone How is it possible to get the time from internet. what are the available time servers ?