The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
How to: Register a Server-Activated Object and a Client-Activated Object for a Host Application Domain
.NET Framework 2.0
The following example shows how to register a server-activated object and a client-activated object for a host application domain. The type attribute in the <activated> tag indicates the full type name and assembly name of the object, as it appears in the <wellknown> tag.
Example
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown
mode = "SingleCall"
type = "myType,myAssembly"
objectUri = "myType.soap"
/>
<activated
type="MyActivatedType, TypeAssembly"
/>
</service>
</application>
</system.runtime.remoting>
</configuration>