Reputation: 59386
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
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:
WCF Developer's Primer from CODE Magazine
A quick summary primer of what's covered in the other two
Upvotes: 11
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