gareth_arch wrote:
> I am having some issues with DST when transferring a date from Flex to
> ColdFusion.

the flash client always adjusts for local tz & cf only sees the server tz (aka 
tz hell). you might be better off working w/epoch offsets instead. setTime() & 
getTime() flex side and if you only care about server tz just use normal cf 
datetime objects on the server. for cf sending back to flex use the 
undocumented 
getTime() to convert cf datetime objects to java epoch offset:

now=now().getTime();


Reply via email to