RE: [flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Seth Hodgson
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of valdhor Sent: Tuesday, May 27, 2008 9:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: HTTPService multiple requests not being sent? This is pretty close to another qustion that was asked lately. Seth Hodgson summed up

RE: [flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Tracy Spratt
@yahoogroups.com Subject: RE: [flexcoders] Re: HTTPService multiple requests not being sent? Injecting a current client-side timestamp into an outbound request is a good way to avoid Http response caching if you don't control the server. If you do control the server, you should consider configuring

Re: [flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Josh McDonald
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Seth Hodgson *Sent:* Tuesday, May 27, 2008 2:38 PM *To:* flexcoders@yahoogroups.com *Subject:* RE: [flexcoders] Re: HTTPService multiple requests not being sent? Injecting a current client-side timestamp into an outbound request

[flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Dmitri Girski
I had caching issues with IE using POST. PS You can always do a POST using dynamic URL, which will stop caching. It does not really matter what is in the request body. Cheers, Dmitri. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: I have heard that POSTed requests

[flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Dmitri Girski
Reasons why your POST request could be cached: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html Responses to this method [POST] are not cacheable, unless the response includes appropriate Cache-Control or Expires header fields. However, the 303 (See Other) response can be used to direct the

Re: [flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Justin Stanczak
Sent: Tuesday, May 27, 2008 9:15 AM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: [flexcoders] Re: HTTPService multiple requests not being sent? This is pretty close to another qustion that was asked lately. Seth Hodgson summed up what was going on here: http

Re: [flexcoders] Re: HTTPService multiple requests not being sent?

2008-05-27 Thread Josh McDonald
[mailto: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com] On Behalf Of valdhor Sent: Tuesday, May 27, 2008 9:15 AM To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: [flexcoders] Re: HTTPService multiple requests not being sent? This is pretty close to another