Index: tests/src/Appender/RemotingAppenderTest.cs =================================================================== --- tests/src/Appender/RemotingAppenderTest.cs (revision 964518) +++ tests/src/Appender/RemotingAppenderTest.cs (working copy) @@ -202,7 +202,16 @@ { if (m_remotingChannel == null) { - m_remotingChannel = new TcpChannel(8085); + BinaryServerFormatterSinkProvider serverProv = new BinaryServerFormatterSinkProvider(); + serverProv.TypeFilterLevel = System.Runtime.Serialization.Formatters.TypeFilterLevel.Full; + BinaryClientFormatterSinkProvider clientProv = new BinaryClientFormatterSinkProvider(); + + System.Collections.IDictionary properties = new System.Collections.Hashtable(); + properties["name"] = "log4net RemotingAppenderTest"; + properties["port"] = 8085; + properties["typeFilterLevel"] = System.Runtime.Serialization.Formatters.TypeFilterLevel.Full; + + m_remotingChannel = new TcpChannel(properties, clientProv, serverProv); // Setup remoting server try @@ -213,8 +222,9 @@ ChannelServices.RegisterChannel(m_remotingChannel); #endif } - catch(Exception) + catch(Exception ex) { + System.Console.Error.WriteLine( ex.Message ); } // Marshal the sink object