cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
vamsikoka
Level 2

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" };
}

 

 

0 Kudos
(1) Reply
VineethaNair
Level 6

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.

0 Kudos