Bug Number | BUG-000102447 |
Submitted | Jan 26, 2017 |
Modified | Mar 30, 2022 |
Severity | Medium |
Applies To | ArcGIS GIS Server |
Version Found | 10.2.1 |
Prog Language | N/A |
Server Platform | Windows OS N/A |
Client Platform | Windows OS N/A |
Database | N/A |
Locale | N/A |
Status |
Unknown Text - Bugs/Fixed
Learn more |
Version Fixed | 10.5.1 |
SP Fixed |
Bug BUG-000102447
Synopsis
The EnvironmentManager singleton object in the ServerLogger.GetServerEnvironment method is not instantiated following the documentation.
Additional Information
The issue is not reproducible using our own programs and no code has been submitted that does reproduce the issue. Additional steps have been requested to reproduce the issue, but no further steps are available. If additional steps to reproduce the problem can be provided then the issue can be re-evaluated.
Alternate Solution
Several ArcGIS GIS Server 10.6.1 users experienced "System.InvalidCastException: Unable to cast object of type 'System.__ComObject' to type 'ESRI.ArcGIS.esriSystem.EnvironmentManagerClass'." exception thrown at
IEnvironmentManager environmentManager = new EnvironmentManager() as IEnvironmentManager;
To fix the above exception, instantiate EnvironmentManager as singleton as the code below:
Type t = Type.GetTypeFromProgID("esriSystem.EnvironmentManager");
System.Object obj = Activator.CreateInstance(t);
IEnvironmentManager pEnvMgr = obj as IEnvironmentManager;