Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-15 Thread gt8887b
We are experiencing this problem occasionally on Verizon phones. We don't seem to have this issue on other networks, so it seems to be something on the carrier side. Our server does include Cache-control: no-store, no-cache in its reply header. On Friday, November 2, 2012 11:01:15 AM

Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-15 Thread b0b
On Friday, 16 November 2012 02:28:34 UTC+1, gt8887b wrote: We are experiencing this problem occasionally on Verizon phones. We don't seem to have this issue on other networks, so it seems to be something on the carrier side. Our server does include Cache-control: no-store, no-cache in

[android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-03 Thread Keith Wiley
Why was my response to this message deleted? At any rate, all I said was that I wasn't familiar with the methods you suggested and that I'll look them up. Thanks. On Friday, November 2, 2012 6:59:25 AM UTC-7, Streets Of Boston wrote: Did you try to add caching headers to the request and/or

[android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Keith Wiley
I guess one solution that seems to show promise is appending an unused randomized GET variable to the end of the URL. That seems pretty hackish though. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Streets Of Boston
Did you try to add caching headers to the request and/or response: Your android client app' request: If-None-Match: **, If-Modified-Since: **, If-Unmodified-Since: ** Your server's response: Cache-Control: *no-cache*, ETag: *x* On Friday, November 2, 2012 2:40:57 AM UTC-4, Keith

[android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread bob
Are you using WiFi or your phone's data connection? I saw this strange issue with this Origami Iris game where it would somehow load a page from the cache if I used my MetroPCS connection. Didn't happen on Wifi though. Very weird. On Friday, November 2, 2012 1:27:38 AM UTC-5, Keith

Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Robert Greenwalt
Even if this is a carrier issue, please let us know - we'd like the carriers to do the right thing and do have some contacts to explore issues like this. Kieth, was this on mobile data or on wifi (or other)? On Fri, Nov 2, 2012 at 7:06 AM, bob b...@coolfone.comze.com wrote: Are you using WiFi

[android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Keith Wiley
I don't generally use wifi unless there is an explicit reason to do so (poor cell coverage AND good wifi coverage...a rare combination). My data plan and data usage do not drive me to go to wifi (e.g. to save bandwidth). On Friday, November 2, 2012 7:06:52 AM UTC-7, bob wrote: Are you using

Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Keith Wiley
I haven't considered testing different kinds of connections...I figured the phone was responsible for the caching and the issue was unrelated to the connection...but I could test it. For that matter, it could be the fault of the particular phone (perhaps this phone caches http data without

Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-02 Thread Kostya Vasilyev
There could be an overzealous cache somewhere in the middle - either intentionally, or misconfigured, or an old buggy version. For example: http://squid-web-proxy-cache.1019090.n4.nabble.com/Problem-with-cached-entries-w-ETag-and-request-without-If-None-Match-header-td1048627.html I also