Working with singletons in .Net Remoting - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T21:42:51Zhttp://stackoverflow.com/feeds/question/735822http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/735822/working-with-singletons-in-net-remoting3Working with singletons in .Net RemotingTodd Benning2009-04-09T20:29:04Z2009-05-13T19:03:22Z
<p>I'm having a bit of a problem with a singleton class I'm exposing via remoting. In my server I have:</p>
<pre><code>TcpChannel channel = new TcpChannel( Settings.Default.RemotingPort );
ChannelServices.RegisterChannel( channel, false );
RemotingConfiguration.RegisterWellKnownServiceType(
typeof( RemotableObject ), "RemotableObject",
WellKnownObjectMode.Singleton );
</code></pre>
<p>RemotableObject is a singleton object that inherits MarshalByRefObject.</p>
<p>My client connects to it via:</p>
<pre><code>remoteObject = (RemotableObject)Activator.GetObject(
typeof( RemotableObject ),
string.Format( "tcp://{0}:{1}/RemotableObject", serverIP, serverPort ) );
</code></pre>
<p>Everything works great as far as the remoting goes, but when I access the singleton object in my server code like this:</p>
<pre><code>int someValue = RemotableObject.Instance.SomeDynamicValue;
</code></pre>
<p>It accesses a different instance than the clients do. I have also verified that the private constructor in RemotableObject gets hit twice while debugging.</p>
<p>I can get the desired behavior if I get an instance to RemotableObject via remoting in my server code, but is there a way that I can access the same object as my clients from the server without the remoting overhead?</p>
http://stackoverflow.com/questions/735822/working-with-singletons-in-net-remoting/735834#735834-1Answer by Joshua for Working with singletons in .Net RemotingJoshua2009-04-09T20:33:10Z2009-04-09T20:33:10Z<p>No.</p>
<p>There is no way to read the memory of the client in the server.</p>
http://stackoverflow.com/questions/735822/working-with-singletons-in-net-remoting/735863#7358635Answer by Charles Bretana for Working with singletons in .Net RemotingCharles Bretana2009-04-09T20:44:25Z2009-04-09T21:08:36Z<p>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? ) </p>
<p>then, in your server, Use </p>
<pre><code>RemotingServices.Marshal([singletonInstance], MesgURI);
</code></pre>
<p>Instead of RegisterWellKnownServiceType()</p>
<p>also, in the class representing the singleton, remember to override the InitializeLifetimeService property... or the singleton object will get Garbage collected at some point... </p>
<pre><code>public override object InitializeLifetimeService() { return (null); }
</code></pre>
<p>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... </p>
http://stackoverflow.com/questions/735822/working-with-singletons-in-net-remoting/735870#7358700Answer by JP for Working with singletons in .Net RemotingJP2009-04-09T20:48:11Z2009-04-09T20:48:11Z<p>I've never tried to call Activator.GetObject from the server-side, but that should return the same instance that the clients are using. But, you're still going to get a proxy.</p>
http://stackoverflow.com/questions/735822/working-with-singletons-in-net-remoting/859783#8597830Answer by Rodrigo Macedo for Working with singletons in .Net RemotingRodrigo Macedo2009-05-13T19:03:22Z2009-05-13T19:03:22Z<p>Very good! It worked fine to me! Thanks!</p>