Re: [flexcoders] Re: dates, AS, and Java

2005-11-04 Thread Anatole Tartakovsky
Sorry if asking the obvious - are you using java.util.Date or java.sql.Date? - Original Message - From: Dave Wolf [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, November 03, 2005 6:00 PM Subject: [flexcoders] Re: dates, AS, and Java That sounds like a bug

Re: [flexcoders] Re: dates, AS, and Java

2005-11-04 Thread Douglas Knudsen
if asking the obvious - are you using java.util.Date or java.sql.Date? - Original Message - From: Dave Wolf [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, November 03, 2005 6:00 PM Subject: [flexcoders] Re: dates, AS, and Java That sounds like a bug in the serializers

[flexcoders] Re: dates, AS, and Java

2005-11-03 Thread Dave Wolf
That sounds like a bug in the serializers to me. Its getting marshalled as a string. Now in a WebService you should use a Calendar rather then a Date. Have you tried that to see if it works better? It definately works with a WebService. biting my lip to not make a WebService vs AMF debate

RE: [flexcoders] Re: dates, AS, and Java

2005-11-03 Thread Peter Farland
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: dates, AS, and Java That sounds like a bug in the serializers to me. Its getting marshalled as a string. Now in a WebService you should use a Calendar rather then a Date. Have you tried that to see if it works better? It definately works