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

2008-05-27 Thread Josh McDonald
You won't get the information in the servlet if your server is caching a text response. The browser may only be doing a head request, or it may be as you suspect doing nothing. Download a debugging proxy like Charles ( http://www.charlesproxy.com/ ) to be sure. It'll tell you exactly what's going o

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

2008-05-27 Thread Justin Stanczak
I do have control of the server and I'm using GET requests. I've also done the setting headers. None of that did any thing. I am sending requests to a single Servlet. I've setup a message to print in the log if any request comes in and it shows the client never made a request. I think this is truel

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

2008-05-27 Thread Josh McDonald
> > -- > > *From:* flexcoders@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 b

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

2008-05-27 Thread Tracy Spratt
flexcoders@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 consi

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

2008-05-27 Thread Seth Hodgson
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 it to set HTTP no-cache headers in these responses to suppress caching. Seth From: flex