Wiki source code of How to enable encryption
Version 20.1 by Gideon Lombard on 2021/06/10 12:42
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
14.1 | 1 | {{box cssClass="floatinginfobox"}} |
| |
17.1 | 2 | = Table of Contents = |
| |
18.1 | 3 | |
| |
17.1 | 4 | {{toc start="2"/}} |
| |
14.1 | 5 | {{/box}} |
| |
13.1 | 6 | |
| |
1.1 | 7 | == Website == |
| 8 | |||
| 9 | 1. Open the web.config on the web server | ||
| 10 | 1. Look for the section with the connection strings | ||
| |
12.1 | 11 | {{code language="xml"}}<add name="Everest" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password]" ></add> |
| 12 | <add name="Icarus" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password]" ></add> | ||
| 13 | <add name="EverestWriteDB" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password]" ></add> | ||
| 14 | <add name="EverestDocuments" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo_Documents;Persist Security Info=True;User ID=[username];Password=[password]" ></add>{{/code}} | ||
| |
1.2 | 15 | 1. If there is not an Encrypt=true as part of the connection string you will need to add it seperated with a ';'. |
| |
12.1 | 16 | {{code language="xml"}}<add name="Everest" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password];Encrypt=true" ></add> |
| 17 | <add name="Icarus" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password];Encrypt=true" ></add> | ||
| 18 | <add name="EverestWriteDB" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo;Persist Security Info=True;User ID=[username];Password=[password];Encrypt=true" ></add> | ||
| 19 | <add name="EverestDocuments" connectionString="Data Source=127.0.0.1;Initial Catalog=Everest_Risk_Demo_Documents;Persist Security Info=True;User ID=[username];Password=[password];Encrypt=true" ></add>{{/code}} | ||
| |
2.1 | 20 | |
| 21 | == Everest.NET == | ||
| 22 | |||
| 23 | |||
| 24 | 1. Get the clients current STP file that is provided to the users | ||
| |
12.1 | 25 | 1. Run the Everest Administrator application and click the **STP Connection Files **menu item |
| 26 | [[image:1623327833111-701.png]] | ||
| 27 | 1. On the next screen you click the **Load STP File** and load the STP file of your client | ||
| 28 | [[image:1623328089168-341.png]] | ||
| 29 | 1. Ensure that the **Encrypt** is checked on the connection settings | ||
| 30 | [[image:1623328456852-301.png]] | ||
| 31 | 1. Click the **Generate STP File** and save the STP file again | ||
| 32 | [[image:1623328525432-818.png]] |