One follow-up I missed is how our scenario goes.
1) Flash calls .NET Web Service.
2) .NET Web Service passes back a person object that contains a
datetime (with no milliseconds).
3) From my understanding the person object is deserialized/decoded
into a Flash object but does it improperly due to milliseconds missing.
4) The Flash code doesn't expect to do anything with the person object
but turn around and send it back to another web service.
5) When it calls the second web service the Flash code serializes the
object back to SOAP, but since it has an invalid datetime field in the
object it spits out data with a bunch of Not A Number acronyms ( I
believe something like NaN-NaN-Nan.....something)
> Back in March, OrangeChicken sent the following response to a developer
> who was having problems with DateTime in Flash. We have run into the
[quoted text clipped - 39 lines]
> That workaround is a hassle because then you have to write parsing
> code - bleh.
wabatson - 27 Jun 2006 01:38 GMT
I also just found this link from Adobe that references ActionScript to
parse datetime in the formats that have milliseconds, if I'm reading it
properly. I'm not sure how this would fit in my scenario though. Does
the developer have to parse through each object that comes through
handling the datetime of each object or is this code that is put at a
lower level so that when Flash decodes the SOAP message it handles it
properly?
> One follow-up I missed is how our scenario goes.
>
[quoted text clipped - 53 lines]
> > That workaround is a hassle because then you have to write parsing
> > code - bleh.