我们的应用程序通过 DCOM SAP 连接器从 SAP 系统中获取数据。最近我们用 .NET 连接器替换了。部署到生产环境后,它工作了一天。突然它在访问一个 RFC 时给出了指定的错误。异常消息是
“SAP.Middleware.Connector.RfcConfigParameters”的类型初始化程序引发异常 - 错误#:-2146233036。
我们使用的代码为 SAP.Middleware.Connector.RfcConfigParameters 创建对象并使用如下
string Value1 ="Val1";
string Value1 ="Val2";
string Value1 ="Val3";
string Value1 ="Val4";
string Value1 ="Val5";
string Value1 ="Val6";
string Value1 ="Val7";
RfcConfigParameters parms = new RfcConfigParameters();
parms.Add(RfcConfigParameters.Param1, Value1);
parms.Add(RfcConfigParameters.Param2, Value2);
parms.Add(RfcConfigParameters.Param3, Value3);
parms.Add(RfcConfigParameters.Param4, Value4);
parms.Add(RfcConfigParameters.Param5, Value5);
parms.Add(RfcConfigParameters.Param6, Value6);
parms.Add(RfcConfigParameters.Param7, Value7);
SapRfcDestination = RfcDestinationManager.GetDestination(parms);
RfcCustomDestination customDest = SapRfcDestination.CreateCustomDestination();
IRfcFunction func = customDest.Repository.CreateFunction("RFC_FUNCTION");
func.SetValue("DATA1", "VAL1")
func.SetValue("DATA2", "VAL2")
func.SetValue("DATA3", "VAL3")
RfcStructureMetadata metaData = customDest.Repository.GetStructureMetadata("STRUCTURENAME");
IRfcTable rfcTable = func.GetTable("TABLENAME");
我们已经追踪到异常信息,下面是异常信息
System.TypeInitializationException: The type initializer for '<Module>' threw an exception. ---> <CrtImplementationDetails>.ModuleLoadException: The C++ module failed to load.
---> System.IO.FileLoadException: Could not load file or assembly 'msvcm80, Version=8.0.50727.6195, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
File name: 'msvcm80, Version=8.0.50727.6195, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ---> System.Runtime.InteropServices.COMException (0x8000FFFF): Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
at <CrtImplementationDetails>.DoDllLanguageSupportValidation()
at <CrtImplementationDetails>.LanguageSupport._Initialize(LanguageSupport* )
at <CrtImplementationDetails>.LanguageSupport.Initialize(LanguageSupport* )
--- End of inner exception stack trace ---
at <CrtImplementationDetails>.ThrowModuleLoadException(String errorMessage, Exception innerException)
at <CrtImplementationDetails>.ThrowModuleLoadException(String , Exception )
at <CrtImplementationDetails>.LanguageSupport.Initialize(LanguageSupport* )
at .cctor()
--- End of inner exception stack trace ---
at SAP.Middleware.Connector.RfcConfigParameters..cctor()- Stack trace: at SAP.Middleware.Connector.RfcConfigParameters..ctor()
以下是我们的观察结果
1. 它并不总是抛出问题。问题是间歇性抛出。
2.当我们去服务器机器并在那里运行应用程序时,它没有抛出错误。仅当应用程序从其他客户端机器访问时才会引发错误。
3. 相同的问题在开发、测试和舞台环境中不可重现。仅在生产中就有问题 4. 如果我们重新部署特定的 dll,它将开始工作一天或半天而没有任何错误,第二天开始抛出错误。
我的具体问题是(1)如何克服“SAP.Middleware.Connector.RfcConfigParameters 的类型初始化程序”引发异常 - Error#:-2146233036 的异常?
(2) 我们的主要怀疑领域是内存泄漏。我们可以怀疑任何其他领域吗?
(3)我们非常有限,无法访问生产环境。因此,我们正试图在我们拥有完全访问权限的其他服务器(如开发和测试)中重现该问题。我们正在考虑多用户和多登录场景,以便在其他环境中重现该问题。我们可以考虑任何其他情况吗?
更新
我们设法在我们的一台测试服务器中重现了该问题。并尝试了以下方法来解决问题。并安装了 Visual C++ 2005 Redistributable SP1、.NET connector 3.0 和 VB6.0。问题仍然存在。我们无法找到问题的根本原因。
为了找到问题的根本原因,我还可以检查和执行哪些操作?
根据回复进行编辑:
1. 我们没有使用任何静态变量 2. 我们已经安装了 Visual C++ 2005 Redistributable SP1。但它仍然没有解决问题。