VB.NET 2002/2003 BasicsFor coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.
You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I need to create an application (console) which will act as a server. Then I will have clients that will connect to the server and send data to the server.
1) Client connects to server
2) Client sends data to server
3) Server processes data
4) Server send back data to specific client (as there will be more than on clinet at the same time)
My problem is how to establish a connection and how I can have 10 connections at the same time with the server communicating back to a specific client (probably using an ArrayList)