Enabling SSL in CWE

If SSL has been enabled in the Vocera Voice Server, but was not enabled in the CWE server during installation, you can enable SSL manually.

To enable SSL in CWE, run the following SQL query on the MVisumAlerts database:

UPDATE [MVisumAlerts].[dbo].[HospitalSettings]
SET [SSLEnabled] = 1;
                 
GO

To disable SSL, run the following SQL query:

UPDATE [MVisumAlerts].[dbo].[HospitalSettings]
        SET [SSLEnabled] = 0;
        
        GO
Note: If you enable or disable SSL, you must restart the Vocera Alarm Message Generator, the Vocera Alarm Escalator, and the Vocera VS Interface.

To check whether SSL is enabled in your CWE environment, run the following SQL query:

SELECT [SSLEnabled]FROM [MVisumAlerts].[dbo].[HospitalSettings]
        GO

SSLEnabled is 1 if SSL is enabled, and 0 if it is not.