Reputation:
I'm doing a sample in .NET remoting. I want to know is it possible to exchange data between a computer in my network to a computer in another network?
Upvotes: 4
Views: 344
Reputation: 1062745
Even if you can use .NET remoting between networks (and I suspect it can), there a few things to consider:
See MSDN:
This topic is specific to a legacy technology that is retained for backward compatibility with existing applications and is not recommended for new development. Distributed applications should now be developed using the Windows Communication Foundation (WCF).
Personally, I would look (as suggested) at WCF for your cross-network IPC needs.
Upvotes: 6