AMT web applications consist of the Control Center and the Application Center. To add these web applications manually to the IIS, the following IIS applications need to be created:
| IIS Application | Description | Physical path* | Example Virtual Path |
|---|---|---|---|
| AMT Environment | The IIS application under which the AMT Web Application will reside. | \ | /AMT |
| ControlCenter | The front end application of the Control Center. | \AmtTools\ControlCenterCore | /AMT/ControlCenter |
| TransactionRendererBlazor | A support application to view transactions inside the Control Center. | \AmtTools\ControlCenterCore\TransactionRendererBlazor | /AMT/ControlCenter/TransactionRendererBlazor |
| ControlCenterBL | The back end application of the Control Center. | \AmtTools\ControlCenterWebAPI | /AMT/ControlCenterBL |
| ApplicationCenter | The front end application of the Application Center. | \AmtTools\ApplicationCenterCore | /AMT/ApplicationCenter |
| ApplicationCenterBL | The back end application of the Application Center. | \AmtTools\ApplicationCenterWebAPI | /AMT/ApplicationCenterBL |
*The Physical Path is relative to the System base path of the AMT environment.
Continue in the sections below to follow the steps necessary to add and configure these AMT applications.
Follow the steps below to add a new environment application in IIS:
Follow the steps below to add the necessary applications for the Control Center and Application Center as well as their respective Application Pools in the IIS:
| Note |
|---|
| The TransactionRendererBlazor is the .NET core successor to the previous .NET Framework TransactionRenderer. |
Lastly, the Transaction renderer blazor needs to be created. Follow the steps below to add the Transaction Renderer Blazor to the Control Center application in the IIS:
If Setup is not used to automatically configure the appsettings.json files, a copy of the sample files first needs to be renamed and configured manually.
| Appsettings File Directories |
|---|
| ControlCenterCore |
| ControlCenterCore\TransactionRendererBlazor |
| ControlCenterWebApi |
| ApplicationCenterCore |
| ApplicationCenterWebApi |
In the appsettings.json file located in the \AmtTools\ControlCenterCore\ directory of the AMT installation, the "Address" setting of the "BusinessLogic" section should be set to the URL of the ControlCenterBL Web Application. In the same file the "Address" setting of the "TransactionRenderer" section should be set to the URL of the TransactionRendererBlazor Web Application.
For example:
"BusinessLogic": {
"Address": "https://amtweb.contoso.local/AMT/ControlCenterBL"
},
"TransactionRenderer": {
"Address": "https://amtweb.contoso.local/AMT/ControlCenter/TransactionRendererBlazor"
}After setting the URLs, save and close the file.
In the appsettings.json file located in the \AmtTools\ApplicationCenterCore\ directory of the AMT installation, the "Address" setting of the "BusinessLogic" section should be set to the URL of the ApplicationCenterBL Web Application.
For example:
"BusinessLogic": {
"Address": "https://amtweb.contoso.local/AMT/ApplicationCenterBL"
}After setting the URL, save and close the file.
Other settings found in these appsettings.json files will be explained in the following help pages.
The authentication method needs to be set for web applications after the applications have been added to IIS Manager. Set up the authentication method for the Control Center and the Application Center by clicking on the authentication method below and follow the instructions on that page.
There is only one possible method to access the Control Center and Application Center.