JFileChooser permission error.
Our application, or applet if you will has been working fine. We have not needed to create any specific security permissions on the client PC as the applet is signed.
As of late, and only in IE we get a:
java.security.AccessControlException: access denied (java.util.PropertyPermission user.dir read)
When the code below is executed.
int returnVal = selectOMission.showDialog(this, "Save Mission");
--selectOMission is defined as "JFileChooser selectOMission = new JFileChooser();"
This problem is not present in linux, or when running other browsers in XP.
Anyone have any ideas?

