0

What are the preferred platforms to implement TCP socket communication?

I'm interested in:

  • scripting languages (eg Swocket for Python)
  • and runtimes (eg .NET / Java).
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607

2 Answers2

1

Socket communication implemented using Java NIO might be a good method. Some of Java based web servers use it. I remember jetty using it. Here is a link from Sun.

vpram86
  • 5,860
  • 4
  • 28
  • 40
1

In Java, we use Apache Mina,

http://mina.apache.org/

Its performance rivals C implementation.

ZZ Coder
  • 74,484
  • 29
  • 137
  • 169