The version 1.1 of ProxyFactory has been released. This version supports fully three communication technologies offered by .NET Framework : Remoting, Asmx, WSE 3.0.
These technologies will be soon described as "Old school" though many developments still use them. One of advantages of the ProxyFactory project is to prepare you to the future adoption of WCF by offering a similar development experience.
ProxyFactory<ICalculator> __proxyFactory = new ProxyFactory<ICalculator>();
ICalculator __proxyCalculator = __proxyFactory.CreateProxy();
double __result = __proxyCalculator.add(1,2);
The deliverables are available on CodePlex. They include binaires and a getting started package. A new video would be published to demonstrate the WSE 3.0 support.