Hi,

I have a singed applet which calls FileDialog object's show() method.
IE does not have problem displaying the dialog but Netscape 7.0
running on same windows machine and on java plugin 1.4.0 just hangs.
Here is the snippet from my code.

rv = (String)AccessController.doPrivileged(
                new PrivilegedAction() {
                    public Object run() {
                        Frame frm = new Frame();
                        FileDialog fd = new FileDialog(frm,
rb.getString("nebserv.upload.title.add.file"), FileDialog.LOAD);
                        fd.show();
                        fd.hide();
                        //fd.dispose();
                        String s = fd.getDirectory()+fd.getFile();
                        return "c:\\temp\\temp.txt";
                    }
                }
            );


As you can see I am calling it inside AccessController so there should
not be any security related problem but it does not throw any error on
applet java console so I am not sure what is going wrong.

This is a major unresolved issue in our product.

Thanks,
Meghana

Reply via email to