Hello
From a C# application, In the following code, I create a log before begin calling a CodeUnit function on a Microsoft Navision webservice, the third line is supposed to log when I ended the call. but in most cases that one is not executed
All the code is inside a try catch section and the exception is never generated.
_CRunConsole.WriteLine("Begin TConnector_ProcessValidatedDocuments(). " + DateTime.Now.ToLongTimeString());
_CU_IntegrationWithThirdSystems.TConnector_ProcessValidatedDocuments();
_CRunConsole.WriteLine("End TConnector_ProcessValidatedDocuments(). " + DateTime.Now.ToLongTimeString());
Thank you in advance for your support.