I have a .NET remoting server which has multiple registered well known types:
<wellknown type="VS.WorkingClass, WorkingClass" objectUri="WorkingClass.rem" mode="SingleCall"/>
<wellknown type="VS.BrokenClass, BrokenClass" objectUri="BrokenClass.rem" mode="SingleCall"/>
When I execute RemotingConfiguration.Configure(configFile)
and loop through WellKnownServiceTypeEntry
instances from RemotingConfiguration.GetRegisteredWellKnownServiceTypes()
, entry for WorkingClass
has its ObjectType set but BrokenClass
hasn't. Both classes are included as project references in the server project and I get no error messages. Any ideas what could cause this?