Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-28 Thread Matthew Shirey
then try to verify that it will be fixed in 2.0. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick Bullotta Sent: Monday, June 27, 2005 7:14 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex, C# Web Services, and Dates

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-28 Thread Matt Chotin
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matthew Shirey Sent: Tuesday, June 28, 2005 12:55 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Well, Since Flex isn't automatically parsing the date correctly. It might be best for me to change the type

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
Might you have some information on where to put this exactly? It seems like it's too late by the time the object has been created from the result of the web service call. All it seems to contain is Invalid Date. When I look at the object that was created in the Network Monitor, it does seem to

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
.Row[i].DateTime = d; } } - Rick From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 6:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Might you h

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Rick Bullotta
Of Matthew Shirey Sent: Monday, June 27, 2005 6:41 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Thanks for the reply, I did try what you suggested just to be sure, but like I said before, it seems that by the time the result event handler has fired

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
- Rick From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 6:41 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Thanks for the reply, I did try what you suggested just

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matthew Shirey
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey Sent: Monday, June 27, 2005 6:41 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates Thanks for the reply, I did try what you suggested just

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Rick Bullotta
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates well, the WSDL says: s:element minOccurs=1 maxOccurs= 1 name=StartDate type=s:dateTime / Because I am close to pulling all my hair out on this one, I decided to try something on the server end. In the web method, I

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Matt Chotin
[mailto:flexcoders@yahoogroups.com] On Behalf Of Rick Bullotta Sent: Monday, June 27, 2005 7:14 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex, C# Web Services, and Dates If you dont need HH:MM:SS resolution, try this for a test: Generate your WSDL, and save it to a file

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-25 Thread Manish Jethani
On 6/25/05, Matthew Shirey [EMAIL PROTECTED] wrote: [snip] StartDate1974-01-26T00:00:00/StartDate Now I'm assuming that this is not the format Flex expects for a date? If not, I guess it's easy enough to make my own date parser, but it seems like this should just work. You don't have

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-25 Thread Rick Bullotta
: [flexcoders] Flex, C# Web Services, and Dates On 6/25/05, Matthew Shirey [EMAIL PROTECTED] wrote: [snip] StartDate1974-01-26T00:00:00/StartDate Now I'm assuming that this is not the format Flex expects for a date? If not, I guess it's easy enough to make my own date parser, but it seems like

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-25 Thread Rick Bullotta
? The compiler complains if we try this. - Rick -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Saturday, June 25, 2005 10:05 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex, C# Web Services, and Dates On 6/25/05

Re: [flexcoders] Flex, C# Web Services, and Dates

2005-06-25 Thread Manish Jethani
On 6/25/05, Rick Bullotta [EMAIL PROTECTED] wrote: Is there a way to use the import statement in inline script in an mx:Script block? The compiler complains if we try this. Yes, certainly. mx:Script import foo.Bar; function blah():Void { Bar.bar(); } /mx:Script