R – Unregistering RemotingConfiguration unregister well known type remoting How to Unregister RemotingConfiguration unregister well known type Best Solution This might help you? http://www.codeproject.com/KB/dotnet/Advanced_Remoting.aspx Related SolutionsR – Exception while registering well know client type Test if you have already registered the client type like so: if (RemotingConfiguration.IsWellKnownClientType(typeof(RemoteTester)) == false) { // register RemotingConfiguration.RegisterWellKnownClientType(typeof(RemoteTester), ... } -Oisin Related Question
Best Solution
This might help you?
http://www.codeproject.com/KB/dotnet/Advanced_Remoting.aspx