Perhaps this may help in providing an answer. When I log out from my
app and go to a different browser tab and go to the URL of my app, I'd
expect to see a login screen.
Instead, it seems as though the browser is caching the page and
attempting to make calls to my services. In the response to these
services, the server (tomcat) is sending back the login page (since
I'm not logged in) as a response.
It seems like the correct approach in this case would be to make sure
the browser attempts to refresh my entry point every time so that it
will be redirected to the login. I've tried adding <meta http-
equiv="Pragma" content="no-cache"> to the top of my html file to force
this like so:
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="content-type" content="text/html;
charset=UTF-8">
But to no avail. Any ideas? I'm in uncharted waters here with this
caching stuff so your help would be greatly appreciated.
Tim
On Jun 1, 1:00 pm, "tim.clymer" <[email protected]> wrote:
> I've done a bit of searching around the forums but haven't seen this
> issue crop up (though there are plenty of blank page issues from what
> I've seen). I'm having an intermittent issue where when I login to my
> application (I use Spring Security as my security framework), it
> forwards to my app's HTML page (my application's entry point).
> Sometimes it will then load and show the application, other times it
> shows just a blank page. If I refresh the blank page, my application
> comes up without fail. This would lend me to believe that this is a
> caching issue. Has anyone else experienced this and have any advice
> on solving it?
>
> Thanks!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---