From d2f98a342d9e5831d8530762f5c7af23c68a3364 Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Wed, 24 Sep 2025 10:38:26 -0700 Subject: [PATCH] adding in GetOIWizardBaseURL --- LSL2/STPROC/ENVIRONMENT_SERVICES.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/LSL2/STPROC/ENVIRONMENT_SERVICES.txt b/LSL2/STPROC/ENVIRONMENT_SERVICES.txt index 8720317..49c04f0 100644 --- a/LSL2/STPROC/ENVIRONMENT_SERVICES.txt +++ b/LSL2/STPROC/ENVIRONMENT_SERVICES.txt @@ -80,6 +80,7 @@ Service GetServer() end service + Service IsProd() Machine = Environment_Services('GetServer') @@ -279,6 +280,26 @@ Service GetMetrologyProductionPath() end service +//---------------------------------------------------------------------------------------------------------------------- +// GetOIWizardBaseUrl +// +// Returns the OIWizardBaseUrl. +//---------------------------------------------------------------------------------------------------------------------- +Service GetOIWizardBaseUrl() + + Machine = Environment_Services('GetServer') + Begin Case + Case ( (Machine _EQC 'MESTSA01EC') or (Machine _EQC 'MESTST1009') or (Machine _EQC 'MESTST1010') ) + Response = 'https://mestsa008.infineon.com:50186/' + Case ( (Machine EQ 'ISCN5CG2430JV1') or (Machine _EQC 'MESTSA09EC') ) + Response = 'http://localhost:12009/' + Case Otherwise$ + Response = 'https://messa014.infineon.com:50184/' + End Case + +end service + + //---------------------------------------------------------------------------------------------------------------------- // GetControlPlanProductionPath //