I'm running into an issue in my code where my test application hangs at the myCmd.Execute() statement. When I say "hangs" I mean that it just sits there. The progress bar in IE loads about half way and then stops moving. The application doesn't error out, I get nothing in the event viewer and there are no other clues as to what is going on. Any ideas?Here is my code:public int ImportFile(string path, string database, string server, string username, string password){ IMANEXTLib.ImportCmd myCmd = new IMANEXTLib.ImportCmd(); IManage.NRTDocument myDoc; IMANEXTLib.ContextItems pContextItems = new IMANEXTLib.ContextItems(); ManDMS oDMS = new ManDMS(); IManSession oSession = oDMS.Sessions.Add(server); oSession.Login(username, password); IManDatabase odb = oSession.Databases.ItemByName(database); pContextItems.Add("DestinationObject", odb); pContextItems.Add("IManExt.Import.FileName", path); pContextItems.Add("IManExt.Import.KeepCheckedOut", false); pContextItems.Add("IManExt.OpenCmd.NoCmdUI", true); myCmd.Initialize(pContextItems); myCmd.Update(); if ((CommandStatus)myCmd.Status == CommandStatus.nrActiveCommand) { myCmd.Execute(); } myDoc = (IManage.NRTDocument)pContextItems.Item("ImportedDocument"); pContextItems.Remove("ImportedDocument"); return myDoc.Number;}