vote up 0 vote down star

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?

flag
Looks like spam... – Mehrdad Afshari Jul 1 at 10:48
You can't exchange data if the other computer is in another network. If you are both connected to the internet have a look at msdn.microsoft.com/en-us/library/… – weiqure Jul 1 at 10:49
6  
I'm very saddened by the comments (deleted) on this post... if the question needs work - edit it; don't just attack it. It took a moment only to make this clear... – Marc Gravell Jul 2 at 4:25

1 Answer

vote up 4 vote down

Even if you can use .NET remoting between networks (and I suspect it can), there a few things to consider:

  • the firewalls may not make it especially convenient
  • .NET remoting is deprecated
  • .NET Remoting provides no security or intergrity

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.

link|flag
1  
+1. If the question is spam, your answer is chorizo. Nice to see some respect and cool-headed reactions. – Erich Mirabal Jul 2 at 4:39
Added point on security. A .NET remoting endpoint can be used by anyone, if exposed beyond a controlled environment you could get hostile clients trying to break your application. – Richard Jul 2 at 9:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.