Andre Pena
Andre Pena

Reputation: 59386

What is the .NET standard for remote method invocation?

Scenario:

What's the .NET 3.5 standard approach for solving this problem? Could you indicate any resource on the web to help me through?

Upvotes: 7

Views: 4927

Answers (2)

Dan J
Dan J

Reputation: 16718

It might be overkill, but it's the remoting method I'm most familiar with, and seems to be the current .NET platform standard: Windows Communication Framework (WCF).

Here are a few references:

MSDN library articles on WCF

WCF Developer's Primer from CODE Magazine

A quick summary primer of what's covered in the other two

Upvotes: 11

Albin Sunnanbo
Albin Sunnanbo

Reputation: 47058

Well, you may use .NET Remoting, but that is officially deprecated, you should really go for WCF.

Edit: WCF does not share an assembly, instead it shares an XML contract that both client and server uses to generate parsers for specified types and methods.

Upvotes: 5

Related Questions