Click to See Complete Forum and Search --> : Socket programming suggestions
UprightMan
02-22-2003, 09:51 AM
Does anyone have any suggestions for the best language to use for socket programming (for both linux and windows environment)?
Would Java be too lethargic? I'm looking for fast and light, but thought about using this project as a Java learning tool.
Any suggestions on where/how to start are appreciated.
ask_123
02-22-2003, 08:25 PM
I would say C is the best choice especially as learning tool. It is fast and light and powerful. Once you can handle C socket programming, you would not have problem with JAVA or others.
Assume that you want the "low" level socket programming.
You should have a basic understanding of network and data communication concept. A strong C background is recommanded before you actually do the socket programming.
The best book I ever came across is UNIX Networking Programming by Stevens.
chrism01
02-23-2003, 08:40 AM
C is good. You might also want to try Perl.
Its portable, almost as fast as C and no compiler/make files to worry about.
The Perl Cookbook from O'Reilly has several examples.