Thingworx server time different to local time.
Hello. The problem layout is simple: I have a service that returns the current time. The code would be the following:
var d = new Date(); result = d;
This shows the browser's time (for example, 11:50:23). However, if I execute this:
var d = new Date(); var hour = d.getHours(); result = hour;
It will show me the server's time (which happens to be one hour behind, so it shows me 10).
Does anyone have any way of approaching this issue, so it would not display the server time, but actually display the actual present time of the browser? Thank you.

