I had the same problem. I solved with:
...
URL urlObj = new URL(url);
HttpURLConnection connection = (HttpURLConnection)
urlObj.openConnection();
connection.addRequestProperty("Cache-Control", "no-cache,max-age=0");
connection.addRequestProperty("Pragma", "no-cache");
...
fabrizio
On Jun 9, 2:29 pm, mar_novice <[email protected]> wrote:
> Is there a way to disable urlfetchService cache? When I made a
> urlfetch, sometimes, what I get is the cached result.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.