Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Apr : Re: UDP Server Not Working On 2000 Server
| Subject: | Re: UDP Server Not Working On 2000 Server |
| Posted by: | "Francois PIETTE [ICS - MidWare]" (francois.piet..@overbyte.be) |
| Date: | Mon, 10 Apr 2006 20:12:57 |
Check for any security product installed on the server or between the client
and the server.
If it works sometimes but not all the times, then maybe it is simply because
UDP is by definition an unreliable protocol. UDP packets are delivered with
"best effort". There is no guarantee that packets are delivered. In case of
congestion, many UDP packet are lost. They are also lost frequently when
sent from a high speed network to a low speed network.
--
francois.piette@overbyte.be
The author for the freeware multi-tier middleware MidWare
The author of the freeware Internet Component Suite (ICS)
http://www.overbyte.be
"Marion" <marionsmith_98@yahoo.com> a écrit dans le message de news:
443a969f$1@newsgroups.borland.com...
>
> My client asked for a transparent help desk pager system to run on their
> network. There is a client that runs windowless and monitors a hot key.
> When the user presses the hot key the client broadcasts a UDP message over
> the network. The server (running on tech machines) listens for those
> messages and alerts the tech that there was a call for help and the
> machine name the call came from. This works great accept when the server
> is running on a Win 2000 Server. Then the server is deaf. It never hears
> the UDP messages. Both the client and server are writen using Delphi 7 and
> IdUDPServer. Is there something I need to do to configure the 2000 Server
> to make this program work?
none