- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- what is the use of the "pfxFile" property, which is newly added property" in WindowsCodeSign.java--...
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
what is the use of the "pfxFile" property, which is newly added property" in WindowsCodeSign.java-->2022 IDE
We have already property certificationFileLoc for digital singed (PFX file location). So what is the use of the "pfxFile" newly added property
InstallerAnyWhere 2018
public class WindowsCodeSign extends AbstractScriptObject {
private String aa = "";
private String ab = "";
private String ac = "";
private String ad = "";
public static String[] getSerializableProperties() {
return new String[] { "certificationFileLoc", "url", "timestampServer", "password" };
}
InstallerAnyWhere 2022
public class WindowsCodeSign extends AbstractScriptObject
{
private String aa = "";
private String ab = "";
private String ac = "";
private String ad = "";
private String ae = "";
private boolean af = false;
private String ag = "";
public static String[] getSerializableProperties()
{
return new String[] { "certificationFileLoc", "url", "timestampServer", "password", "pfxFile", "signingFromCertStore", "certThumbPrint" };
}
Hi,
InstallAnywhere 2020 and later versions provide support for digital signature using certificate store. Certificate store that contains the certificate that you want to use for signing can be referenced. 'certificationFileLoc' property can now store the certificate store details as well as the pfx file location it used to store in older InstallAnywhere versions, based on the certificate selection option. The new property 'pfxFile' stores only the .pfx file location and has been added for internal use and will be removed in future versions.