AlexVPerl
AlexVPerl

Reputation: 8016

.NET Remoting migrating from 2.0 to 4.0 .NET version

Stuck with a legacy web app that has its entire Biz & Data logic inside a .NET Remoting project.

Web project runs in 4.0, however Remoting layer is under 2.0.

Trying to see if its possible to migrate those DLL's to .NET 4.0 to simplify deployment process and remove the need to have 2 separate application pools.

Is this possible ?

According MSDN "legacy technology that is retained for backward compatibility with existing applications and is not recommended for new development." - so I'm assuming the namespaces should still be present in 4.0.

Upvotes: 1

Views: 316

Answers (1)

Peter
Peter

Reputation: 12711

Yes, this is possible. The remoting stuff still works fine in .NET 4.0.

Upvotes: 2

Related Questions