I did one experiment with RemotingServices.Marshal like this
Remotable component hosted in a Windows Exe. Exe code is
Form1_Load(object sender, EventArgs e)
{
RemotingConfiguration.Configure("path of the config file");
RemoteClass obj = new RemoteClass();
obj.MyVal =100;
RemotingServices.Marshal(obj);
}
public RemoteClass: MarshalByRefObj
{
static int Counter;
public RemoteClass()
{
Counter++;
}
int _MyVal =0;
public int MyVal
{
get
{
return _MyVal;
}
set
{
_MyVal = value;
}
}
}
Now in the client side code
button1_click()
{
RemoteClass obj = Activator.GetObject(typeof(RemoteClass), "object URI");
if(RemotingServices.IsTransparentProxy(obj))
{
MessageBox.Show(obj.Myval.ToString());
}
}
It will popup the message as 0 not 100. If you put a breakpoint in the constructor of RemoteClass, you will see that the constructor is getting called 2 times
- When the RemoteClass object is created in the Service itself
- When the client is making call to MyVal property.
I think RemotingServices.Marshal has nothing to do with the single instance. Even if you use just RemotingConfiguration.Configure and override the InitializeLifetimeService so that it will return null, will be sufficient to host a remotable component.
