Deployment Notes

To deploy File Downloader on the server, you should copy the following files along with other files of the web application you are building:

  • FileDownloader7.cab
  • FileDownloader7_x64.cab
  • FileDownloader7.jar
  • iuembed.js

Make sure that paths to these files specified in File Downloader initialization code remain the same as on the development machine. For example, if you put the CAB and JAR files in the same folder where the Web page with the control is placed, the code base values should be as follows:

JavaScript
fd.activeXControlCodeBase = "FileDownloader7.cab";
fd.activeXControlCodeBase64 = "FileDownloader7_x64.cab";
fd.javaAppletCodeBase = "./";
fd.javaAppletJarFileName = "FileDownloader7.jar";

And if the CAB and JAR files are in the parent folder, then specify these values:

JavaScript
fd.activeXControlCodeBase = "../FileDownloader7.cab";
fd.activeXControlCodeBase64 = "../FileDownloader7_x64.cab";
fd.javaAppletCodeBase = "../";
fd.javaAppletJarFileName = "FileDownloader7.jar";

Before you deploy File Downloader on the production server, do not forget to specify a license key for this server domain or IP address. See the Evaluating and Registering File Downloader topic for more details.

Note

There is no need to install File Downloader SDK on the server. File Downloader SDK contains documentation, demo applications, and distributable files (FileDownloader7.cab, FileDownloader7_x64.cab, FileDownloader7.jar, and iuembed.js). It does not contain anything that would require installation on the server.