1

Any idea why I get this exception when using C# to start up the Enterprise Guide automation server?

Code:

SAS.EG.Scripting.Application enterpriseGuide = new SAS.EG.Scripting.Application();
SAS.EG.Scripting.ISASEGProject project = enterpriseGuide.New();

throws FileNotFoundException

with Message "C:\SAIC Development\Main\SAS\working\alerts\add-in\AlertManager\bin\Debug\SEGuide.exe"

and Stack Trace

at System.Diagnostics.FileVersionInfo.GetVersionInfo(String fileName)
   at SAS.Shared.SharedEnvironment.get_ApplicationVersion()
   at SAS.EG.ProjectElements.Element.SetModified()
   at SAS.EG.ProjectElements.Element.SetLabel(String strLabel)
   at SAS.EG.ProjectElements.ProjectCollection..ctor(IMetadataService metadataService)
   at SAS.EG.ProjectElements.ProjectCollection..ctor()
   at SAS.EG.Scripting.Project..ctor()
   at SAS.EG.Scripting.Application.New()
   at AlertManager.AlertDesignerForm.CreateNew() in C:\SAIC Development\Main\SAS\working\alerts\add-in\AlertManager\AlertDesignerForm.cs:line 50
   at AlertManager.AlertDesignerForm.newToolStripMenuItem_Click(Object sender, EventArgs e) in C:\SAIC Development\Main\SAS\working\alerts\add-in\AlertManager\AlertDesignerForm.cs:line 128
   at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
   at System.Windows.Forms.ToolStripMenuItem.OnClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
   at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
   at System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met)
   at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
   at System.Windows.Forms.ToolStripDropDown.OnMouseUp(MouseEventArgs mea)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.ToolStrip.WndProc(Message& m)
   at System.Windows.Forms.ToolStripDropDown.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
   at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
   at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.Run(Form mainForm)
   at AlertManager.Program.Main() in C:\SAIC Development\Main\SAS\working\alerts\add-in\AlertManager\Program.cs:line 18
   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.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()

Any help would be appreciated.

flag

Your Answer

Browse other questions tagged or ask your own question.