vote up 0 vote down star
1

when I send an object through an HTTPService to an XML api run by a Rest ruby on rails server.. how does it get converted to XML? I mean, it just works fine for strings and numbers, but for example Date type conversion causes an "unprocessable entity" error on rails log..

Any Idea?

flag

55% accept rate
It's possible that I misunderstood your question. Is your Ruby on Rails server receiving the XML or sending it? – Peter Wagenet Oct 4 at 21:14
Yes it's receiving the XML, anyway I've solved the problem, if not elegantly... – luca Oct 5 at 11:42
Do you mind posting your solution here so we can review it? – Peter Wagenet Oct 5 at 13:44

2 Answers

vote up 1 vote down

One possibility is that when the object is converted to XML, Flash calls toString() on the Date object, resulting in the Day Mon DD HH:MM:SS TZD YYYY format. If you call valueOf() on the Date object, you will get milliseconds since epoch, which is probably better for your case.

link|flag
probably.. but it'd be nice to know.. anyway I wrote a function to parse every Data field and convert it to the proper string format.. – luca Oct 4 at 17:43

Your Answer

Get an OpenID
or

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