show/hide this revision's text 3 added 10 characters in body

If I understand what you're after, (you want the object to live on the server, but you want all client calls to get the same instance of the object on the server, and you also want calls in the server code to get that same instance? )

then, in your server, Use

RemotingServices.Marshal([singletonInstance], MesgURI);

Instead of RegisterWellKnownServiceType()

also, in the class representing the singleton, remember to override the InitializeLifetimeService property... or the singleton object will get Garbage collected at some point...

public override object InitializeLifetimeService() { return (null); }

From the server, just call your singleton classes' static factory method to get access to that singleton instance... Do not use remoting calls at all...

show/hide this revision's text 2 added 8 characters in body

In

If I understand what you're after, (you want the object to live on the server, but you want all client calls to get the same instance of the object on the server, and you also want calls in the server code to get that same instance? )

then, in your server, Use

RemotingServices.Marshal([singletonInstance], MesgURI);

Instead of RegisterWellKnownServiceType()

also, in the class representing the singleton, remember to override the InitializeLifetimeService property... or the singleton object will get Garbage collected at some point...

public override object InitializeLifetimeService() { return (null); }

From the server, just call your classes' static factory method to get access to that singleton instance... Do not use remoting calls at all...

show/hide this revision's text 1

In your server, Use

RemotingServices.Marshal([singletonInstance], MesgURI);

Instead of RegisterWellKnownServiceType()

also, in the class representing the singleton, remember to override the InitializeLifetimeService property... or the singleton object will get Garbage collected at some point...

public override object InitializeLifetimeService() { return (null); }