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

Re: Client/Server by Svein

Svein
Sat May 22 09:30:12 CDT 2004

This example shows how to create an asynch server:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp

This show you how to make the client:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp

Sincerely
Svein Terje Gaup

"MoeJoe" <anonymous@discussions.microsoft.com> wrote in message
news:51F1C025-CE7C-4937-A3FE-17C795C24A8F@microsoft.com...
> 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 advance
>



Re: Client/Server by Chad

Chad
Sat May 22 11:57:33 CDT 2004

=?Utf-8?B?TW9lSm9l?= <anonymous@discussions.microsoft.com> wrote in
news:51F1C025-CE7C-4937-A3FE-17C795C24A8F@microsoft.com:
> 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/

Re: Client/Server by Eric

Eric
Sat May 22 12:41:00 CDT 2004

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/tg/detail/-/1590590627/qid=1085247007/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/002-6913281-9397653?v=glance&s=books&n=507846

or

c#
http://www.amazon.com/exec/obidos/tg/detail/-/1590590252/qid=1085247007/sr=8-2/ref=sr_8_xs_ap_i2_xgl14/002-6913281-9397653?v=glance&s=books&n=507846

--
Eric Marvets
Principal Consultant

the bang project

<shameless self promotion>

Email sales@bangproject.com for Information on Our Architecture and
Mentoring Services

</shameless self promotion>



Re: Client/Server by anonymous

anonymous
Sun May 23 07:46:02 CDT 2004

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/default.asp?url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp

This show you how to make the client:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconnon-blockingserversocketexample.asp

Sincerely
Svein Terje Gaup

"MoeJoe" <anonymous@discussions.microsoft.com> wrote in message
news:51F1C025-CE7C-4937-A3FE-17C795C24A8F@microsoft.com...
> 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 advance
>