Tagged Questions

16
votes
5answers
2k views

What should be the lifetime of an NHibernate session?

I'm new to NHibernate, and have seen some issues when closing sessions prematurely. I've solved this temporarily by reusing sessions instead of opening a session pr transaction. However, I was under ...
1
vote
1answer
158 views

.NET Remoting object Lifetime

I wrote this code: public class Message : MarshalByRefObject, IMessage { ... public override object InitializeLifetimeService() { ILease leas = (ILease) ...
0
votes
1answer
132 views

Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET?

Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET? I put my question this way because I am not sure that a detailed enough description can be posted here, but ...
0
votes
1answer
851 views

What is the preferred way to handle this TCP connection in C#?

I have a server application (singleton, simple .NET console application) that talks to a GlobalCache GC-100-12 for the purpose of routing IR commands. Various .NET WinForm clients on the local network ...