We found out some new information on this issue.
We tested with this small python-script on the machine that has only 64bit-Software installed (Ora-Client and AGS 10.1 pre):
Code:
import arcpy
arcpy.env.workspace=r"<path to our sde-connection-file>"
arcpy.ListDatasets()
This code doesn't show any errors, but it prints out an empty list instead of the list of our feature datasets.
When we look at the python.exe-process after we do this, we can see that the oracle client dlls are all loaded into the process as they should.
But in the application event log of the system we get the following error:
Code:
Fehler beim Generieren des Aktivierungskontextes für "C:\Program Files\Common Files\ArcGIS\bin\de\ResArcGISFileHelperLib.dll".
Die abhängige Assemblierung "Microsoft.VC90.DebugCRT,processorArchitecture="amd64",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.21022.8""
konnte nicht gefunden werden. Verwenden Sie für eine detaillierte Diagnose das Programm "sxstrace.exe".
Sorry for the german. The message says, that ResArcGISFileHelperLib.dll cannot load "Microsoft.VC90.DebugCRT".
So my questions are?- Why is the esri dll trying to load a debug version of the VC runtime?
- How can I install this debug libs?
Please help.
Bookmarks