Hi,
I have an .net C# console application (not a service). it basically connects to a webservice, gets some xml files, copies those files to a few location on a drives, validates the xml, processes it and sends these objects to another web service.
However, when the main method exists (and the console window closes) I can still see the process in task manager.
I tried surrounding everything in the main method with a try, to catch an ApplicationException, and I still got nothing as to why the app crashes even though everything works smoothly otherwise...
Anybody has a clue as to where to begin to check for the faulty part?