Hi
We build a Flex/J2EE application deployed in several site. When we update the application, we warn the client, shutdown tomcat, do our stuff, and warn the client client again that he can go back to work.
For now, it's fine : BUT, some of the client forget to restart they browser. So the .swf ( the flash part ) of our application remains in the cache/memory of theire browser. So they use a up to date java application with a out dated flash UI.
Constraint : We can interact only with the server part, where tomcat run. We dont even know the IP of the client.
We are looking for a way of be certain that all flash UI are up to date. We are ready to develop something if needed, but first we look into easy solution.
our idea so far :
- A JavaScript hack to force the browser to restart
- A method in the UI to check the version of the java part. if mismatch => message who tell "restart"
Anybody with something better ?