I am able to successfully run the Demo java app (from command-line). I am trying to write a java applet to handle FTP. I have the applet signed and everything works until it gets to this point:
FTPClient ftpClient = new FTPClient();
ftpClient.setRemoteHost("spin48.spindustry.com");
At this point, I receive the following error:
java.security.AccessControlException: access denied (java.net.SocketPermission spin48.spindustry.com resolve)
Note: I can use the Demo app to connect to an FTP account on "spin48.spindustry.com". There are no firewalls I am passing thru. This is not secure FTP, just plain old FTP.
Any thoughts?
Thanks,
Randy