Answer the question
In order to leave comments, you need to log in
Implementing data transport over the network in C#
What would you recommend to use from the existing one or to develop your own technology. Need to create a data transfer transport both in the local network and over the Internet? It is advisable to use add-ons over HTTP to painlessly overcome possible barriers. I will also be grateful if you tell me how not to use Base64 during transmission, so as not to increase traffic consumption.
Answer the question
In order to leave comments, you need to log in
Try .NET Remoting. The thing is very, very transparent, the server exports a certain object, with which the client, in turn, works. All types calmly marshall, there is no need to think about anything. Transport over Http is available.
Excuse me, why is HTTP needed? Once he will spend traffic. Can use TCP? The tutorial is here www.switchonthecode.com/tutorials/csharp-tutorial-simple-threaded-tcp-server . The use of Base64 is impractical because TCP can transfer binary data.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question