-
I almost pulled it out of CSLA 4 and put it into the Samples folder (along with the asmx and Enterprise Services proxy/host pairs). I just ran out of time to do that and didn't want to delay the release. So yes, it is basically deprecated. If remoting is working for you and is useful, by all means...
-
I am working on an application that needs to access data locally as well as remotely. I have built a class that implements IDataPortalProxyFactory and loads up the WcfProxy class if remote access is needed and LocalProxy otherwise. I have not gotten it work yet, but it seems simple enough. I may also...
-
This is how I have mine setup: < system.runtime.remoting > < application > < service > < wellknown mode = " SingleCall " objectUri = " RemotingPortal.rem " type = " Csla.Server.RemotingPortal, Csla " /> </ service > < channels > < channel...
-
I am using CSLA 3.8 in my application. I am trying to set up data portal in the application server with the following section in the web.config: <system.runtime.remoting> <application> <service> <wellknown mode="SingleCall" objectUri="RemotingPortal.rem" type...