Hi, > BlazeDS automatically translate the time stamp between the client time zone > setting the server time zone.
As I mentioned in anther thread, this is a Flash Player feature not a BlaseDS one. Have a read of http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Date.html As a result there's no option in BlazeDS to turn this off. Note this rather nasty issue: "However, the transition dates currently in effect are applied to dates in the past and the future, so the daylight saving time bias might calculate incorrectly for dates in the past when the locale had different transition dates." You best option is not to send Date objects about but use some other representation of dates. eg a String in the form "YYYY-MM-DD" or UTC time (a long) This has been discussed on the user and dev lists a few times, here's one example: http://apache-flex-users.2333346.n4.nabble.com/New-Date-issues-tc2679.html If you search you'll find a few other conversations. Thanks, Justin