RE: [flexcoders] Re: Partial result from HTTPService call

2008-04-26 Thread Tracy Spratt
] On Behalf Of Dmitri Girski Sent: Friday, April 25, 2008 9:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call Not really. You will try to do the proper thing and unsubscribe from the result event and mess up your httpservice object. Still can't

[flexcoders] Re: Partial result from HTTPService call

2008-04-26 Thread Dmitri Girski
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call Not really. You will try to do the proper thing and unsubscribe from the result event and mess up your httpservice object. Still can't find the reason why event.result is better than lastResult

[flexcoders] Re: Partial result from HTTPService call

2008-04-25 Thread Dmitri Girski
flexcoders%40yahoogroups.com [mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of Dmitri Girski Sent: Wednesday, April 02, 2008 4:05 PM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call

RE: [flexcoders] Re: Partial result from HTTPService call

2008-04-25 Thread Tracy Spratt
Subject: [flexcoders] Re: Partial result from HTTPService call Hi Josh, I've found my problem - it was a race condition, i.e. the new request was killing the previous one. So, I've just placed the locks around the send()-receive() functions. And also, if next request comes I start the timer which

[flexcoders] Re: Partial result from HTTPService call

2008-04-25 Thread Dmitri Girski
Subject: [flexcoders] Re: Partial result from HTTPService call Hi Josh, I've found my problem - it was a race condition, i.e. the new request was killing the previous one. So, I've just placed the locks around the send()-receive() functions. And also, if next request comes I start

[flexcoders] Re: Partial result from HTTPService call

2008-04-22 Thread Dmitri Girski
Girski Sent: Wednesday, April 02, 2008 4:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call Why not to use lastResult? It is absolutely the same as event.result. Even better - you can bind to it :) --- In flexcoders@yahoogroups.com

Re: [flexcoders] Re: Partial result from HTTPService call

2008-04-22 Thread Josh McDonald
Girski Sent: Wednesday, April 02, 2008 4:05 PM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call Why not to use lastResult? It is absolutely the same as event.result. Even better - you can bind

[flexcoders] Re: Partial result from HTTPService call

2008-04-04 Thread Dmitri Girski
Hi Pier, I said that I am not sure about getting binary data via HTTPService as I never heard or read about it. There is no direct answer in the documentation as well, I just think that HTTPService is too much oriented on the high-level stuff as XML encoding/decoding etc. First thing - check

[flexcoders] Re: Partial result from HTTPService call

2008-04-03 Thread Dmitri Girski
result from HTTPService call Why not to use lastResult? It is absolutely the same as event.result. Even better - you can bind to it :) --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Tracy Spratt tspratt@ wrote: First, don't use lastResult. It is intended

[flexcoders] Re: Partial result from HTTPService call

2008-04-03 Thread Dmitri Girski
Hmmm, I just re-read your post and realised that you are getting the binary data via the HTTPService. I am not sure if you can do this. If I were you I would save the generated image as .jpg file on server in some temp location and then return the path+name of it to the client. And then just

[flexcoders] Re: Partial result from HTTPService call

2008-04-02 Thread Dmitri Girski
Why not to use lastResult? It is absolutely the same as event.result. Even better - you can bind to it :) --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: First, don't use lastResult. It is intended for binding expressions. Use event.result. Change that an see if it

RE: [flexcoders] Re: Partial result from HTTPService call

2008-04-02 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] Re: Partial result from HTTPService call Why not to use lastResult? It is absolutely the same as event.result. Even better - you can bind to it :) --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Tracy Spratt [EMAIL PROTECTED] wrote: First