[Quickfix-users] Problem running QuickFix 1.9.3 managed wrapper (System.IO.FileNotFoundException) in
Brought to you by:
orenmnero
From: Paul P. <pa...@ch...> - 2005-02-15 18:08:45
|
Hi, It seems I have same issue as posting 2004-11-18 10:20, except my application is in VB/.NET When I try to run the application I get the following exception. An unhandled exception of type "System.IO.FileNotFoundException" occurred in Unknown Module. Additional information: File or assembly name quickfix_net, or one of its dependencies, was not found. I suspect it is to do with sessionSettings not finding executor.cfg, because when I run the following the contents of executor.cfg are written to the console Try Dim sr As StreamReader = New StreamReader(CmdArgs(0)) Dim line As String Do line = sr.ReadLine() Console.WriteLine(line) Loop Until line Is Nothing sr.Close() Catch E As Exception Console.WriteLine("The file could not be read:") End Try But when I try: Try Dim sessionSettings As New SessionSettings(CmdArgs(0)) Catch e As Exception Console.WriteLine(E) End Try the error appears. The file executor.cfg is in the same directory as the vb source code. Many thanks, Paul |