Developer, Former MVP, now at Microsoft - Best of 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.runtime.remoting> <application name="ServerHost"> <service> <activated type="SomeNamespace.SomeClass, SomeDllName" /> </service> <channels> <channel ref="ipc" portName="server"> <serverProviders> <formatter ref="binary" typeFilterLevel="Full" /> </serverProviders> </channel> </channels> </application> </system.runtime.remoting> </configuration>
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.runtime.remoting> <application> <client url="ipc://server/ServerHost"> <activated type="SomeNamespace.SomeClass, SomeDllName" /> </client> <channels> <channel ref="ipc" portName="client"> <serverProviders> <formatter ref="binary" typeFilterLevel="Full" /> </serverProviders> </channel> </channels> </application> </system.runtime.remoting> </configuration>