I access a web service in a POST method. I need to send to the server a json serialized object. In my Android class I have some string fields and a Date field. This Date field gets serialized like this:
.... TouchDateTime":"Oct 6, 2010 5:55:29 PM"}"
but to be compatible with the web service I need to have it like:
"TouchDateTime":"\/Date(928138800000+0300)\/"
I found an interesting article about Deserialization in here: http://benjii.me/2010/04/deserializing-json-in-android-using-gson/ I think I need to do something like this. Could you give me a helping hand ?