Vishal
Vishal

Reputation: 457

Spring .Net Remoting Advantages

I am developing remoting application. Which one will be useful, dot net remoting using spring dlls or regular .net remoting using system.runtime.remoting

Upvotes: 0

Views: 289

Answers (1)

bbaia
bbaia

Reputation: 1183

Spring's .NET Remoting support allows you to export a 'plain CLR object' as a .NET Remoted object. By "plain CLR object" we mean classes that do not inherit from a specific infrastructure base class such as MarshalByRefObject.

Supports DI and AOP on service endpoints.

Upvotes: 4

Related Questions