www.dextsolution.com
DEXTUPLOAD
X5
menu toggleReference > dextuploadx5Configuration object

dextuploadx5Configuration object

Object

Version 1.0.0.0 or later

dextuploadx5Configuration is a JavaScript object that contains settings. To use DEXTUploadX5, be sure to set all the properties of the declared dextuploadx5Configuration object in the dextuploadx5-configuration.js file.

The dextuploadx5-configuration.js script file should be included on every page where DEXTUploadX5 is used. It must be declared before the dextuploadx5.js file.

win.dextuploadx5Configuration = {	
    authkey: "jn+xziPdVh6f5KN17uFHdY95XEvB7o...skip...2YjGiLl92zWiXAyO2FdI9r5XGfwxQ=",
    productPath: location.origin + "/dx5/",
    // The following three properties can be omitted.
    hdDownloadURL: location.origin + "/dx5/client/dextuploadx5-hd-download.html",
    hd32UpdateURL: location.origin + "/dx5/client/dextuploadx5-hd-installer.exe",
    hd64UpdateURL: location.origin + "/dx5/client/dextuploadx5-hd-installer-x64.exe"
};
Properties

authkey

  • Version 1.0.0.0 or later

  • Explanation

    To upload or download files, you need to set the authentication key.

productPath

  • Version 1.0.0.0 or later

  • Explanation

    It indicates the position of the product resource. You must set the entire path including the schema (http, https).

    Example: "http://www.sample.com/dx5/"

hdDownloadURL

  • Version 2.0.0.0 or later

  • Explanation

    When using HD application, it indicates the address to the page where the product can be downloaded when the product is not installed.

    Example: "http://www.sample.com/dx5/client/dextuploadx5-hd-download.html"

hd32UpdateURL

  • Version 2.1.2.0 or later

  • Explanation

    It indicates the path that can automatically update the HD appliation. Depending on the server MIME settings, the download may fail, so you may need to configure the server to download the exe file.

    Example: "http://www.sample.com/dx5/client/dextuploadx5-hd-installer.exe"

hd64UpdateURL

  • Version 2.1.2.0 or later

  • Explanation

    It is an update path pointing to the 64-bit installer.

    Example: "http://www.sample.com/dx5/client/dextuploadx5-hd-installer-x64.exe"