Client/Server

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to write an application (Server) that listen to a specific port, and receives and processes all requests that come from multiple machines (clients) at the same time. My question is; where can I start? Are there any examples that can help me?

Thanks in advanc
 
This example shows how to create an asynch server:
http://msdn.microsoft.com/library/d...html/cpconnon-blockingserversocketexample.asp

This show you how to make the client:
http://msdn.microsoft.com/library/d...html/cpconnon-blockingserversocketexample.asp

Sincerely
Svein Terje Gaup

MoeJoe said:
I need to write an application (Server) that listen to a specific port,
and receives and processes all requests that come from multiple machines
(clients) at the same time. My question is; where can I start? Are there
any examples that can help me?
 
=?Utf-8?B?TW9lSm9l?= said:
I need to write an application (Server) that listen to a specific port,
and receives and processes all requests that come from multiple machines
(clients) at the same time. My question is; where can I start? Are
there any examples that can help me?

www.indyproject.org

Some demos of what you seek at:
www.atozed.com/indy


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Make your ASP.NET applications run faster
http://www.atozed.com/IntraWeb/
 
I highly recommend picking up Ingo Rammer's book on remoting. Its a few
hundred pages written by the master of remoting. His book is in either:

vb
http://www.amazon.com/exec/obidos/t...002-6913281-9397653?v=glance&s=books&n=507846

or

c#
http://www.amazon.com/exec/obidos/t...002-6913281-9397653?v=glance&s=books&n=507846

--
Eric Marvets
Principal Consultant

the bang project

<shameless self promotion>

Email (e-mail address removed) for Information on Our Architecture and
Mentoring Services

</shameless self promotion>
 
Thanx Svein, this is exactly what I'm looking for

----- Svein Terje Gaup wrote: -----

This example shows how to create an asynch server:
http://msdn.microsoft.com/library/d...html/cpconnon-blockingserversocketexample.asp

This show you how to make the client:
http://msdn.microsoft.com/library/d...html/cpconnon-blockingserversocketexample.asp

Sincerely
Svein Terje Gaup

MoeJoe said:
I need to write an application (Server) that listen to a specific port,
and receives and processes all requests that come from multiple machines
(clients) at the same time. My question is; where can I start? Are there
any examples that can help me?
 
Back
Top