DateTime stored in long form getting converted to utc. How to prevent this default behaviour.
I have this service getprocessdata which returns START_DATE and COMPLT_DATE.
I am calling this service inside of another service that generates report where I need to display start and complete date coming from my getprocessdata service, but the date time getting returned is in utc.
I also created a demoservice where I called the same service getprocessdata and printed the start_date keeping the output set to dateTime, the output was as expected.
why is such conversion taking place.
Things I have tried:
- converting the obj.entry storing start and end date to date time, long but still getting date time in utc
- used var start_date = new Date(table_start_Date); still getting in utc
Could someone please help me out on how to prevent this date time conversion.
Thank you in advance.

