On 1 sep, 18:06, Adligo <[email protected]> wrote:
> Hi All,
>
> This is my quick hack that fixes that issue;
> http://yourserver/yourPath?yourCgiParams=yourValues&request=1
> http://yourserver/yourPath?yourCgiParams=yourValues&request=2
> http://yourserver/yourPath?yourCgiParams=yourValues&request=3
> exc
>
> Also note this can be applied to html and property files (or any
> files)http://yourserver/funky.html&request=1http://yourserver/drummer.properties&request=2
>
> I have been using a static int counter to accomplish this trick.
> I think GWT should add some caching options to its http api, because
> this is quite hoaky.
Something like the following? ;-)
RequestBuilder builder = new RequestBuilder(RequestBuilder.GET,
"yourPath?yourCgiParams=yourValues");
builder.setHeader("Cache-Control", "no-cache");
...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" 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-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---