Vishnu Pradeep
Vishnu Pradeep

Reputation: 2097

possible to connect a tcp client on windows to a server on linux?

writing a server that runs on linux (Ubuntu) using mono. and a client that runs on windows using .net, can i connect to the server in linux. i will use c# for both server and client programming.

Upvotes: 1

Views: 1027

Answers (2)

Michael Goldshteyn
Michael Goldshteyn

Reputation: 74390

Regardless of the programming language(s) you use, you can always connect a TCP client running on Windows/Linux to a server running on Windows/Linux, with or without .NET. TCP, or Transmission Control Protocol, is Operating System and Programming Language agnostic.

Upvotes: 5

Joel Coehoorn
Joel Coehoorn

Reputation: 415931

Yes, you can do this. There's nothing special about .Net or any other language/platform the would require a tcp service to only work with that specific language or platform. It's all just tcp in the end.

Upvotes: 3

Related Questions