JDK-6396594 : Vista: plugin cannot write to default cache directory
  • Type: Bug
  • Component: deploy
  • Sub-Component: deployment_toolkit
  • Affected Version: 6
  • Priority: P2
  • Status: Closed
  • Resolution: Fixed
  • OS: windows,windows_vista
  • CPU: x86
  • Submitted: 2006-03-10
  • Updated: 2010-04-04
  • Resolved: 2006-10-31
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other JDK 6
1.4.2_14Fixed 6 b85Fixed
Related Reports
Duplicate :  
Duplicate :  
Description
In Vista, IE runs in a special protected mode. When running plugin applets in IE, when we try to store resources into the default cache directory in the user's home, it will get redirected to another folder under the user's temporary internet files. So later if the user wants to view the cached resources via java control panel, the cache viewer will show nothing in the cache because the cached resources are not store in the default location.
This also prevents the sharing of cached resources between webstart and plugin.

Applet still runs fine in IE7.

We need to investigate and see where should we move the default cache directory when running vista.

Comments
EVALUATION For Java 6+ and Java 5u11+, when running on Vista, the deployment home directory (where cache, log, etc is located) will now be under the user's appdata/locallow directory: c:\Users\<username>\AppData\LocalLow\Sun\Java\Deployment\ This directory can be written by both Java Plug-in and Java Web Start, without any redirection, even under IE protected mode. We obtain the path to the user's locallow directory using windows API: SHGetFolderPathEx with argument FOLDERID_LocalAppDataLow
31-01-2007

SUGGESTED FIX http://web-east.east/deployment/www/webrevs/ngthomas/6396594/webrev/
28-04-2006

EVALUATION I tried to move the deployment infrastructure directory to the "low" directory as returned by SHGetFolderPathEx function (with FOLDERID_LocalAppDataLow as argument). But even this path, when in IE protected mode, it still got redirected to another virtualized directory. I found that if we set the deployment infrastructure directory to: c:\Users\ngthomas\AppData\Local\Microsoft\Windows\Temporary Internet Files\Virtualized Then both webstart and plugin cache can co-exists there; no re-direction even in protected mode. But I couldn't find a win api that will returned this path yet; and i am not sure if this will works in all different editions of Vista. More investigation is needed. Another possible approach is to elevate plugin to run in "intermediate" or "high" mode, same as webstart.
15-03-2006