Hi Trent,
Good idea about using unencrypted files to map the schemas, and I may have to do that. In the mean time, when testing the the run-time access I found a rights problem instantiating the Cryptor object. This is not a Strataframe problem, of course, just a result of being new to .NET, but could you give me some guidance, please? Thanks.
Alex
At this point an error ocurrs at runtime: Security exception was unhandled.
Imports XitechCryptorModule Module1
Public oXitechCryptor As XitechCryptor.Cryptor
Sub Main()
' Instantiate Cryptor and tell it to watch disk access by oledb32.dll
oXitechCryptor = New XitechCryptor.Cryptor()
System.Security.SecurityException was unhandled
Message="System.Security.Permissions.SecurityPermission"
Source="ConsoleApplication1"
StackTrace: at ConsoleApplication1.Module1.Main()
at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.runTryCode(Object userData)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()