Apache qpid does not has a direct support for sending Date type objects. I want to send datetime fetched from Database and Date objects using Apache Qpid in way that is portable across different systems i.e. systems using C++/Java or any other language using Apache qpid.

How can I do this so that all the usual stuff like timezone resolution etc are taken care w/o any issues.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I always use a UTC timestamp (in Java this is a long) which is the number of milliseconds since the big bang, or perhaps something slightly more recent. At any rate, that is a universal value which can then be rendered back into a date type object and the timezone will be faithfully rendered in accordance with the locale of the environment rendering it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.