This is a test application that will test if two Windows
machines can communicate using UDP.  If this application
works, then a LM client and server should be able to talk
to each other.

The two executables, UDPCServ.exe and UDPCCli.exe, are console apps that 
run under Windows.

Files included:

Readme.txt	This file
UDPCCLI.exe	The client side message sender
UDPCSERV.exe	The server side message receiver


Instructions:


IMPORTANT:  The SentinelLM License Manager program should NOT be running!!


On a machine that will act as the server run the UDPCSERV.exe
with the following:

c:\UDPCSERV -p 5093

On the machine that will act as the client run the UDPCCLI.exe
with the following:

C:\UDPCCLI -s <servername or IP> -p 5093

You will then be asked for message text. Type in a simple text
message. Check the server to see if it has recieved the message

Example:

Run on the server machine:
C:\Junk>UDPCSERV -p 5093

UDP Server

UDP Port number 5093
Waiting for a datagram

Run on the client machine:
C:\Junk>UDPCCLI -s dcannon-2k -p 5093

UDP Server

UDP Server name dcannon-2k
UDP Port number 5093
Enter a message to send:
Test message
Datagram #1 sent
Enter a message to send:

Received by Server:
Datagram #1 Rec'd: Test message
Waiting for a datagram


