Switch between HTTP and HTTPS after installation
- Last UpdatedSep 29, 2025
- 1 minute read
AVEVA Production Management is installed with HTTPS by default for WCF web services port.
To switch from HTTPS to HTTP
-
Rename the following files:
-
"Citect.Ampla.ServiceModel.Services.config" to "Citect.Ampla.ServiceModel.Services_Https.config"
-
"Citect.Ampla.ServiceModel.Services_Http.config" to "Citect.Ampla.ServiceModel.Services.config"
-
"Citect.Ampla.ServiceModel.Clients.config" to "Citect.Ampla.ServiceModel.Clients_Https.config"
-
"Citect.Ampla.ServiceModel.Clients_Http.config" to "Citect.Ampla.ServiceModel.Clients.config"
-
-
Run PowerShell as administrator and run the following commands:
netsh http delete urlacl url=https://+:<wcfport>/
netsh http add urlacl url=http://+:<wcfport>/ user=<userAccount>
-
Deregister the SSL certificate on the HTTPS port using the following PowerShell command:
netsh http delete sslcert ipport=0.0.0.0:<wcfport>
Important: When changing the WCF port from HTTPS to HTTP, include the @serverName parameter in the calls when executing the following stored procedures: GetDataByLocationV200806, GetAuditDataByLocationV200806. For example: exec [storedProc] @serverName=http://<serverName>. Alternatively, reinstall the stored procedures with the updated ServerName value in Studio properties and generate the install files. For detailed steps, refer to Generate an install script package in the administrator online help.
-
Restart the AVEVA Production Management service manager.
To switch from HTTP to HTTPS
-
Rename the following files:
-
"Citect.Ampla.ServiceModel.Services.config" to "Citect.Ampla.ServiceModel.Services_Http.config"
-
"Citect.Ampla.ServiceModel.Services_Https.config" to "Citect.Ampla.ServiceModel.Services.config"
-
"Citect.Ampla.ServiceModel.Clients.config" to "Citect.Ampla.ServiceModel.Clients_Http.config"
-
"Citect.Ampla.ServiceModel.Clients_Https.config" to "Citect.Ampla.ServiceModel.Clients.config"
-
-
Run PowerShell as administrator and run the following commands:
netsh http delete urlacl url=http://+:<wcfport>/
netsh http add urlacl url=https://+:<wcfport>/ user=<userAccount>
-
Register the SSL certificate for the WCF port. For detailed steps, refer to Set up the SSL certificate for WCF web services and look for Register the SSL trusted certificate section.
-
Restart the AVEVA Production Management service manager.