You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by sc...@apache.org on 2009/02/04 22:14:40 UTC

svn commit: r740890 - /incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs

Author: sccomer
Date: Wed Feb  4 21:14:40 2009
New Revision: 740890

URL: http://svn.apache.org/viewvc?rev=740890&view=rev
Log:
refactored csharp binding runtime namespace from Etch to Org.Apache.Etch.Bindings.Csharp.

in this case, fix the transport stack filter names.

Modified:
    incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs

Modified: incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs?rev=740890&r1=740889&r2=740890&view=diff
==============================================================================
--- incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs (original)
+++ incubator/etch/trunk/binding-csharp/runtime/src/main/csharp/Org.Apache.Etch.Bindings.Csharp/Support/TransportFactory.cs Wed Feb  4 21:14:40 2009
@@ -226,9 +226,9 @@
             Define("tcp", new TcpTransportFactory(false));
             Define("tls", new TcpTransportFactory(true));
 
-            DefineFilter("KeepAlive", "Etch.Transport.Filter.KeepAlive");
-            DefineFilter("PwAuth", "Etch.Transport.Filter.PwAuth");
-            DefineFilter("Logger", "Etch.Transport.Filter.Logger");
+            DefineFilter("KeepAlive", "Org.Apache.Etch.Bindings.Csharp.Transport.Filter.KeepAlive");
+            DefineFilter("PwAuth", "Org.Apache.Etch.Bindings.Csharp.Transport.Filter.PwAuth");
+            DefineFilter("Logger", "Org.Apache.Etch.Bindings.Csharp.Transport.Filter.Logger");
         }
 	}
 }