show/hide this revision's text 2 added 408 characters in body

and it appears the web service is converting the date time value to the servers time zone.

I'm trying to make sure I have this correct: your web service method takes a parameter of type DateTime (as in, System.DateTime) and is converting the passed parameter?

DateTime objects don't carry an implicit timezone, so any determination by the web service to infer local time would be a logic flaw (at least without supporting timezone criteria.)

If you can supply your server and client code snippets, it would make the scenario easier to diagnose.

UPDATE: Not sure if this scenario is accurate, so please clarify:

  • Client submits request with DateTime value of '12:00:00 00:00:00 PM CST'
  • Server in PST receives/interprets request at '10:00:00 00:00:00 PM PST'

If this is the case, can you convert all data to UTC time? If you're executing a query lookup, this implies converting the stored data to UTC as well.

show/hide this revision's text 1

and it appears the web service is converting the date time value to the servers time zone.

I'm trying to make sure I have this correct: your web service method takes a parameter of type DateTime (as in, System.DateTime) and is converting the passed parameter?

DateTime objects don't carry an implicit timezone, so any determination by the web service to infer local time would be a logic flaw (at least without supporting timezone criteria.)

If you can supply your server and client code snippets, it would make the scenario easier to diagnose.