Hi Everyone,
My applet should read the proxy server settings present in the windows registry. I�m using �jRegistryKey.jar� which is an open source project for reading the windows registry.
Below code is working fine when I use it the standalone application, but this code is not working when I use it in the applet.
RegistryKey registryKey = new RegistryKey(RootKey.HKEY_CURRENT_USER,� Software\Microsoft\Windows\CurrentVersion\Internet Settings�);
Iterator i = registryKey.values();
This is the policy file that I defined for accessing the system resource
grant SignedBy ReadRegistry {
permission java.io.FilePermission "c:\\WINDOWS", "read"
};
Please help me on how to fix this issue.
Thanks
Aravind