Configure Integration with AVEVA InTouch
- Last UpdatedMay 15, 2024
- 1 minute read
To integrate AVEVA InTouch and AVEVA Recipe Management
-
Click WindowMaker > Special > Configure > Wizard/ActiveX Installation > ActiveX Control Installation and then select Microsoft Web Browser from the list of available ActiveX Controls and click Install to add the WebBrowser ActiveX control into AVEVA InTouch.
-
Set Internet Explorer to default to a supported browser version (11.0 in this case) when used with WindowViewer by running RegEdit and adding the following registry entry.
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION] "view.exe"=dword:00002AF9 -
Set Internet Explorer to allow multiple connections to server (allows multiple signalR connections)
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings]"MaxConnectionsPerServer"=dword:0000000a "MaxConnectionsPer1_0Server"=dword:0000000a
-
Create an AVEVA InTouch window and add the WebBrowser control by selecting Wizards > Explorer.
-
Add the following Window Scripts > On Show:
#Explorer1.Navigate( "https://<hostname>/RecipeManagement/index_exec_comp.cshtml");
NOTE: Specify the port number in the URL if you have not configured the server with the default port number 443.
-
Add a button called Logout, and add the following Action script:
#Explorer1.Navigate("https://<hostname>/RecipeManagement/sts_logout_exec_comp.cshtml");
NOTE: This approach supports only one AVEVA Recipe Management web component per AVEVA InTouch window.
You should add port number in the URL if you have configured the server using a port other than the default port 443. For example, https://<hostname>:<portnumber>/RecipeManagement/...